[MINOR]: Formatted.

This commit is contained in:
Michael Uhl 2018-12-25 15:58:33 +01:00
parent a867231348
commit 2908613499

366
pom.xml
View File

@ -1,188 +1,190 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd"> http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>de.dhbwstuttgart</groupId> <groupId>de.dhbwstuttgart</groupId>
<artifactId>JavaTXcompiler</artifactId> <artifactId>JavaTXcompiler</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>0.1</version>
<name>JavaTXcompiler</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.0</version>
<scope>test</scope>
</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>22.0</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.11</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.0</version>
</dependency>
<!--
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
<version>[4.0.0,)</version>
</dependency>
-->
<!--
<dependency>
<groupId>org.bitbucket.mstrobel</groupId>
<artifactId>procyon-reflection</artifactId>
<version>[0.5.32,)</version>
</dependency> -->
</dependencies>
<build> <version>0.1</version>
<directory>target</directory> <name>JavaTXcompiler</name>
<outputDirectory>target/classes</outputDirectory> <url>http://maven.apache.org</url>
<finalName>${project.artifactId}-${project.version}</finalName> <dependencies>
<testOutputDirectory>target/test-classes</testOutputDirectory> <dependency>
<sourceDirectory>src/</sourceDirectory> <groupId>junit</groupId>
<testSourceDirectory>test/</testSourceDirectory> <artifactId>junit</artifactId>
<plugins> <version>4.0</version>
<plugin> <scope>test</scope>
<groupId>org.antlr</groupId> </dependency>
<artifactId>antlr4-maven-plugin</artifactId> <dependency>
<version>4.7</version> <groupId>org.antlr</groupId>
<executions> <artifactId>antlr4</artifactId>
<execution> <version>4.7</version>
<id>antlr</id> </dependency>
<goals> <dependency>
<goal>antlr4</goal> <groupId>commons-io</groupId>
</goals> <artifactId>commons-io</artifactId>
<configuration> <version>2.6</version>
<sourceDirectory>src/de/dhbwstuttgart/parser/antlr/</sourceDirectory> </dependency>
<outputDirectory>src/de/dhbwstuttgart/parser/antlr/</outputDirectory> <dependency>
<arguments> <argument>-package</argument> <argument>de.dhbwstuttgart.parser.antlr</argument> </arguments> <groupId>com.google.guava</groupId>
</configuration> <artifactId>guava</artifactId>
</execution> <version>22.0</version>
<execution> </dependency>
<id>aspParser</id> <dependency>
<goals> <groupId>org.reflections</groupId>
<goal>antlr4</goal> <artifactId>reflections</artifactId>
</goals> <version>0.9.11</version>
<configuration> </dependency>
<sourceDirectory>src/de/dhbwstuttgart/sat/asp/parser/antlr/</sourceDirectory> <!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
<outputDirectory>src/de/dhbwstuttgart/sat/asp/parser/antlr/</outputDirectory> <dependency>
<arguments> <groupId>org.ow2.asm</groupId>
<argument>-package</argument> <artifactId>asm</artifactId>
<argument>de.dhbwstuttgart.sat.asp.parser.antlr</argument> <version>7.0</version>
</arguments> </dependency>
</configuration> <!-- <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-all</artifactId>
</execution> <version>[4.0.0,)</version> </dependency> -->
<!-- <dependency> <groupId>org.bitbucket.mstrobel</groupId> <artifactId>procyon-reflection</artifactId>
<version>[0.5.32,)</version> </dependency> -->
</dependencies>
</executions> <build>
</plugin> <directory>target</directory>
<plugin> <outputDirectory>target/classes</outputDirectory>
<artifactId>maven-assembly-plugin</artifactId> <finalName>${project.artifactId}-${project.version}</finalName>
<executions> <testOutputDirectory>target/test-classes</testOutputDirectory>
<execution> <sourceDirectory>src/</sourceDirectory>
<phase>package</phase> <testSourceDirectory>test/</testSourceDirectory>
<goals> <plugins>
<goal>single</goal> <plugin>
</goals> <groupId>org.antlr</groupId>
</execution> <artifactId>antlr4-maven-plugin</artifactId>
</executions> <version>4.7</version>
<configuration> <executions>
<descriptorRefs> <execution>
<descriptorRef>jar-with-dependencies</descriptorRef> <id>antlr</id>
</descriptorRefs> <goals>
</configuration> <goal>antlr4</goal>
</plugin> </goals>
<plugin> <configuration>
<groupId>org.reficio</groupId> <sourceDirectory>src/de/dhbwstuttgart/parser/antlr/</sourceDirectory>
<artifactId>p2-maven-plugin</artifactId> <outputDirectory>src/de/dhbwstuttgart/parser/antlr/</outputDirectory>
<version>1.1.2-SNAPSHOT</version> <arguments>
<executions> <argument>-package</argument>
<execution> <argument>de.dhbwstuttgart.parser.antlr</argument>
<id>default-cli</id> </arguments>
<configuration> </configuration>
<artifacts> </execution>
<!-- specify your depencies here --> <execution>
<!-- groupId:artifactId:version --> <id>aspParser</id>
<artifact> <goals>
<id>de.dhbwstuttgart:JavaTXcompiler:0.1</id> <goal>antlr4</goal>
</artifact> </goals>
<artifact><id>org.reflections:reflections:0.9.11</id></artifact> <configuration>
<artifact><id>com.google.guava:guava:22.0</id></artifact> <sourceDirectory>src/de/dhbwstuttgart/sat/asp/parser/antlr/</sourceDirectory>
<artifact><id>javax.annotation:javax.annotation-api:1.3.1</id></artifact> <outputDirectory>src/de/dhbwstuttgart/sat/asp/parser/antlr/</outputDirectory>
<artifact><id>org.glassfish:javax.annotation:3.1.1</id></artifact> <arguments>
</artifacts> <argument>-package</argument>
</configuration> <argument>de.dhbwstuttgart.sat.asp.parser.antlr</argument>
</execution> </arguments>
</executions> </configuration>
</plugin> </execution>
<plugin>
<groupId>org.eclipse.tycho</groupId> </executions>
<artifactId>tycho-p2-repository-plugin</artifactId> </plugin>
<version>${tycho.version}</version> <plugin>
<executions> <artifactId>maven-assembly-plugin</artifactId>
<execution> <executions>
<phase>package</phase> <execution>
<goals> <phase>package</phase>
<goal>archive-repository</goal> <goals>
</goals> <goal>single</goal>
</execution> </goals>
</executions> </execution>
</plugin> </executions>
<plugin> <configuration>
<groupId>org.apache.maven.plugins</groupId> <descriptorRefs>
<artifactId>maven-compiler-plugin</artifactId> <descriptorRef>jar-with-dependencies</descriptorRef>
<configuration> </descriptorRefs>
<source>9</source> </configuration>
<target>9</target> </plugin>
</configuration> <plugin>
</plugin> <groupId>org.reficio</groupId>
</plugins> <artifactId>p2-maven-plugin</artifactId>
</build> <version>1.1.2-SNAPSHOT</version>
<pluginRepositories> <executions>
<pluginRepository> <execution>
<id>reficio</id> <id>default-cli</id>
<url>http://repo.reficio.org/maven/</url> <configuration>
</pluginRepository> <artifacts>
</pluginRepositories> <!-- specify your depencies here -->
<repositories> <!-- groupId:artifactId:version -->
<repository> <artifact>
<id>maven-repository</id> <id>de.dhbwstuttgart:JavaTXcompiler:0.1</id>
<url>file:///${project.basedir}/target</url> </artifact>
</repository> <artifact>
</repositories> <id>org.reflections:reflections:0.9.11</id>
<properties> </artifact>
<maven.compiler.source>1.8</maven.compiler.source> <artifact>
<maven.compiler.target>1.8</maven.compiler.target> <id>com.google.guava:guava:22.0</id>
<tycho.version>0.23.0</tycho.version> </artifact>
</properties> <artifact>
<distributionManagement> <id>javax.annotation:javax.annotation-api:1.3.1</id>
<repository> </artifact>
<id>maven-repository</id> <artifact>
<name>MyCo Internal Repository</name> <id>org.glassfish:javax.annotation:3.1.1</id>
<url>file:///${project.basedir}/maven-repository/</url> </artifact>
</repository> </artifacts>
</distributionManagement> </configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>archive-repository</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>reficio</id>
<url>http://repo.reficio.org/maven/</url>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<id>maven-repository</id>
<url>file:///${project.basedir}/target</url>
</repository>
</repositories>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<tycho.version>0.23.0</tycho.version>
</properties>
<distributionManagement>
<repository>
<id>maven-repository</id>
<name>MyCo Internal Repository</name>
<url>file:///${project.basedir}/maven-repository/</url>
</repository>
</distributionManagement>
</project> </project>