198 lines
5.3 KiB
XML
198 lines
5.3 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>de.dhbwstuttgart</groupId>
|
|
<artifactId>JavaCompilerPlugin.configuration</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<tycho.version>1.2.0</tycho.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<eclipse-repo.url>http://download.eclipse.org/releases/oxygen</eclipse-repo.url>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>eclipse-release</id>
|
|
<url>${eclipse-repo.url}</url>
|
|
<layout>p2</layout>
|
|
</repository>
|
|
<!-- repository> <id>equinox</id> <url>http://mvnrepository.com/artifact/org.eclipse.platform/org.eclipse.equinox.p2.repository</url>
|
|
<layout>p2</layout> </repository -->
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.dhbwstuttgart</groupId>
|
|
<artifactId>JavaTXcompiler</artifactId>
|
|
<version>0.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr4</artifactId>
|
|
<version>4.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>27.0.1-jre</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.reflections</groupId>
|
|
<artifactId>reflections</artifactId>
|
|
<version>0.9.11</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm</artifactId>
|
|
<version>[6.1.1,)</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.bcel</groupId>
|
|
<artifactId>bcel</artifactId>
|
|
<version>6.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>install</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.basedir}/bundles/JavaCompilerPlugin.Plugin/lib</outputDirectory>
|
|
<stripVersion>true</stripVersion>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-compiler-plugin</artifactId>
|
|
<version>${tycho.version}</version>
|
|
<configuration>
|
|
<extraClasspathElements>
|
|
<dependency>
|
|
<groupId>de.dhbwstuttgart</groupId>
|
|
<artifactId>JavaTXcompiler</artifactId>
|
|
<version>0.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr4</artifactId>
|
|
<version>4.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>27.0.1-jre</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.reflections</groupId>
|
|
<artifactId>reflections</artifactId>
|
|
<version>0.9.11</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm</artifactId>
|
|
<version>[6.1.1,)</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.bcel</groupId>
|
|
<artifactId>bcel</artifactId>
|
|
<version>6.2</version>
|
|
</dependency>
|
|
</extraClasspathElements>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-maven-plugin</artifactId>
|
|
<version>${tycho.version}</version>
|
|
<extensions>true</extensions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-p2-repository-plugin</artifactId>
|
|
<version>${tycho.version}</version>
|
|
<configuration>
|
|
<includeAllDependencies>true</includeAllDependencies>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-packaging-plugin</artifactId>
|
|
<version>${tycho.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<id>package-feature</id>
|
|
<configuration>
|
|
<finalName>${project.artifactId}_${unqualifiedVersion}.${buildQualifier}</finalName>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>target-platform-configuration</artifactId>
|
|
<version>${tycho.version}</version>
|
|
<configuration>
|
|
<pomDependencies>consider</pomDependencies>
|
|
|
|
<environments>
|
|
<environment>
|
|
<os>linux</os>
|
|
<ws>gtk</ws>
|
|
<arch>x86</arch>
|
|
</environment>
|
|
<environment>
|
|
<os>linux</os>
|
|
<ws>gtk</ws>
|
|
<arch>x86_64</arch>
|
|
</environment>
|
|
<environment>
|
|
<os>win32</os>
|
|
<ws>win32</ws>
|
|
<arch>x86</arch>
|
|
</environment>
|
|
<environment>
|
|
<os>win32</os>
|
|
<ws>win32</ws>
|
|
<arch>x86_64</arch>
|
|
</environment>
|
|
<environment>
|
|
<os>macosx</os>
|
|
<ws>cocoa</ws>
|
|
<arch>x86_64</arch>
|
|
</environment>
|
|
</environments>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<!-- <resources> <resource> <directory>bundles/JavaCompilerPlugin.Plugin/icons</directory>
|
|
<includes> <include>sample.gif</include> </includes> </resource> </resources> -->
|
|
</build>
|
|
|
|
</project> |