38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>de.dhbwstuttgart</groupId>
|
|
<artifactId>JavaCompilerPlugin.bundles</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>de.dhbwstuttgart</groupId>
|
|
<artifactId>JavaCompilerPlugin</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>JavaCompilerPlugin.Plugin</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.basedir}/JavaCompilerPlugin.Plugin/lib</outputDirectory>
|
|
<stripVersion>true</stripVersion>
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |