Skipping tests (for now).

This commit is contained in:
Michael Uhl 2018-12-25 15:27:02 +01:00
parent 65e0a22477
commit 757c6e0ec1

412
pom.xml
View File

@ -1,210 +1,218 @@
<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>
<version>0.1</version> <version>0.1.0</version>
<name>JavaTXcompiler</name> <name>JavaTXcompiler</name>
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tycho.version>1.2.0</tycho.version> <tycho.version>1.2.0</tycho.version>
</properties> </properties>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>maven-repository</id> <id>maven-repository</id>
<name>MyCo Internal Repository</name> <name>MyCo Internal Repository</name>
<url>file:///${project.basedir}/maven-repository/</url> <url>file:///${project.basedir}/maven-repository/</url>
</repository> </repository>
</distributionManagement> </distributionManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.antlr</groupId> <groupId>org.antlr</groupId>
<artifactId>antlr4</artifactId> <artifactId>antlr4</artifactId>
<version>4.7</version> <version>4.7</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
<version>2.6</version> <version>2.6</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.google.guava</groupId> <groupId>com.google.guava</groupId>
<artifactId>guava</artifactId> <artifactId>guava</artifactId>
<version>27.0.1-jre</version> <version>27.0.1-jre</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.reflections</groupId> <groupId>org.reflections</groupId>
<artifactId>reflections</artifactId> <artifactId>reflections</artifactId>
<version>0.9.11</version> <version>0.9.11</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.ow2.asm</groupId> <groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId> <artifactId>asm</artifactId>
<version>[6.1.1,)</version> <version>[6.1.1,)</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.12</version> <version>4.12</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<directory>target</directory> <directory>target</directory>
<outputDirectory>target/classes</outputDirectory> <outputDirectory>target/classes</outputDirectory>
<finalName>${project.artifactId}-${project.version}</finalName> <finalName>${project.artifactId}-${project.version}</finalName>
<testOutputDirectory>target/test-classes</testOutputDirectory> <testOutputDirectory>target/test-classes</testOutputDirectory>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.antlr</groupId> <groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId> <artifactId>antlr4-maven-plugin</artifactId>
<version>4.7</version> <version>4.7</version>
<executions> <executions>
<execution> <execution>
<id>antlr</id> <id>antlr</id>
<goals> <goals>
<goal>antlr4</goal> <goal>antlr4</goal>
</goals> </goals>
<configuration> <configuration>
<sourceDirectory>src/main/antlr4/java8</sourceDirectory> <sourceDirectory>src/main/antlr4/java8</sourceDirectory>
<outputDirectory>${project.basedir}/target/generated-sources/antlr4/de/dhbwstuttgart/parser/antlr</outputDirectory> <outputDirectory>${project.basedir}/target/generated-sources/antlr4/de/dhbwstuttgart/parser/antlr</outputDirectory>
<arguments> <arguments>
<argument>-package</argument> <argument>-package</argument>
<argument>de.dhbwstuttgart.parser.antlr</argument> <argument>de.dhbwstuttgart.parser.antlr</argument>
</arguments> </arguments>
</configuration> </configuration>
</execution> </execution>
<execution> <execution>
<id>aspParser</id> <id>aspParser</id>
<goals> <goals>
<goal>antlr4</goal> <goal>antlr4</goal>
</goals> </goals>
<configuration> <configuration>
<sourceDirectory>src/main/antlr4/sat/</sourceDirectory> <sourceDirectory>src/main/antlr4/sat/</sourceDirectory>
<outputDirectory>${project.basedir}/target/generated-sources/antlr4/de/dhbwstuttgart/sat/asp/parser/antlr</outputDirectory> <outputDirectory>${project.basedir}/target/generated-sources/antlr4/de/dhbwstuttgart/sat/asp/parser/antlr</outputDirectory>
<arguments> <arguments>
<argument>-package</argument> <argument>-package</argument>
<argument>de.dhbwstuttgart.sat.asp.parser.antlr</argument> <argument>de.dhbwstuttgart.sat.asp.parser.antlr</argument>
</arguments> </arguments>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-assembly-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId>
<executions> <artifactId>maven-surefire-plugin</artifactId>
<execution> <version>3.0.0-M1</version>
<phase>package</phase> <configuration>
<goals> <skipTests>true</skipTests>
<goal>single</goal> </configuration>
</goals> </plugin>
</execution> <plugin>
</executions> <artifactId>maven-assembly-plugin</artifactId>
<configuration> <executions>
<descriptorRefs> <execution>
<descriptorRef>jar-with-dependencies</descriptorRef> <phase>package</phase>
</descriptorRefs> <goals>
</configuration> <goal>single</goal>
</plugin> </goals>
<plugin> </execution>
<groupId>org.apache.maven.plugins</groupId> </executions>
<artifactId>maven-site-plugin</artifactId> <configuration>
<version>3.7.1</version> <descriptorRefs>
</plugin> <descriptorRef>jar-with-dependencies</descriptorRef>
<plugin> </descriptorRefs>
<groupId>org.apache.maven.plugins</groupId> </configuration>
<artifactId>maven-project-info-reports-plugin</artifactId> </plugin>
<version>3.0.0</version> <plugin>
</plugin> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-site-plugin</artifactId>
<groupId>org.reficio</groupId> <version>3.7.1</version>
<artifactId>p2-maven-plugin</artifactId> </plugin>
<version>1.3.0</version> <plugin>
<executions> <groupId>org.apache.maven.plugins</groupId>
<execution> <artifactId>maven-project-info-reports-plugin</artifactId>
<id>default-cli</id> <version>3.0.0</version>
<configuration> </plugin>
<artifacts> <plugin>
<!-- specify your depencies here --> <groupId>org.reficio</groupId>
<!-- groupId:artifactId:version --> <artifactId>p2-maven-plugin</artifactId>
<artifact> <version>1.3.0</version>
<id>de.dhbwstuttgart:JavaTXcompiler:0.1</id> <executions>
</artifact> <execution>
<artifact> <id>default-cli</id>
<id>org.reflections:reflections:0.9.11</id> <configuration>
</artifact> <artifacts>
<artifact> <!-- specify your depencies here -->
<id>com.google.guava:guava:27.0.1-jre</id> <!-- groupId:artifactId:version -->
</artifact> <artifact>
<artifact> <id>de.dhbwstuttgart:JavaTXcompiler:0.1</id>
<id>javax.annotation:javax.annotation-api:1.3.1</id> </artifact>
</artifact> <artifact>
<artifact> <id>org.reflections:reflections:0.9.11</id>
<id>org.glassfish:javax.annotation:3.1.1</id> </artifact>
</artifact> <artifact>
</artifacts> <id>com.google.guava:guava:27.0.1-jre</id>
</configuration> </artifact>
</execution> <artifact>
</executions> <id>javax.annotation:javax.annotation-api:1.3.1</id>
</plugin> </artifact>
<plugin> <artifact>
<groupId>org.eclipse.jetty</groupId> <id>org.glassfish:javax.annotation:3.1.1</id>
<artifactId>jetty-maven-plugin</artifactId> </artifact>
<version>9.4.14.v20181114</version> </artifacts>
<configuration> </configuration>
<scanIntervalSeconds>10</scanIntervalSeconds> </execution>
<webAppSourceDirectory>${basedir}/target/repository/</webAppSourceDirectory> </executions>
<webApp> </plugin>
<contextPath>/site</contextPath> <plugin>
</webApp> <groupId>org.eclipse.jetty</groupId>
<supportedPackagings> <artifactId>jetty-maven-plugin</artifactId>
<supportedPackaging>jar</supportedPackaging> <version>9.4.14.v20181114</version>
</supportedPackagings> <configuration>
</configuration> <scanIntervalSeconds>10</scanIntervalSeconds>
</plugin> <webAppSourceDirectory>${basedir}/target/repository/</webAppSourceDirectory>
<plugin> <webApp>
<groupId>org.eclipse.tycho</groupId> <contextPath>/site</contextPath>
<artifactId>tycho-p2-repository-plugin</artifactId> </webApp>
<version>${tycho.version}</version> <supportedPackagings>
<executions> <supportedPackaging>jar</supportedPackaging>
<execution> </supportedPackagings>
<phase>p2:site</phase> </configuration>
<goals> </plugin>
<goal>archive-repository</goal> <plugin>
</goals> <groupId>org.eclipse.tycho</groupId>
</execution> <artifactId>tycho-p2-repository-plugin</artifactId>
</executions> <version>${tycho.version}</version>
</plugin> <executions>
<!-- plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <execution>
<version>3.8.0</version> <configuration> <source>9</source> <target>9</target> <phase>p2:site</phase>
</configuration> </plugin --> <goals>
</plugins> <goal>archive-repository</goal>
</build> </goals>
<pluginRepositories> </execution>
<pluginRepository> </executions>
<id>reficio</id> </plugin>
<url>http://repo.reficio.org/maven/</url> <!-- plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId>
</pluginRepository> <version>3.8.0</version> <configuration> <source>9</source> <target>9</target>
<pluginRepository> </configuration> </plugin -->
<id>repo2_maven_org</id> </plugins>
<url>http://repo2.maven.org/maven2</url> </build>
</pluginRepository> <pluginRepositories>
</pluginRepositories> <pluginRepository>
<repositories> <id>reficio</id>
<repository> <url>http://repo.reficio.org/maven/</url>
<id>maven-repository</id> </pluginRepository>
<url>file:///${project.basedir}/target</url> <pluginRepository>
</repository> <id>repo2_maven_org</id>
</repositories> <url>http://repo2.maven.org/maven2</url>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<id>maven-repository</id>
<url>file:///${project.basedir}/target</url>
</repository>
</repositories>
</project> </project>