Compare commits
8 Commits
targetByte
...
ohneMaven
Author | SHA1 | Date | |
---|---|---|---|
|
ed5cdd58d9 | ||
|
93a97984b5 | ||
|
4b2a6f99bc | ||
|
72b5b01990 | ||
|
a5800382c2 | ||
|
a019eab6b2 | ||
|
611dc4b36b | ||
|
0830458ee2 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,7 +7,6 @@ bin
|
||||
.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
|
||||
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "reflections"]
|
||||
path = reflections
|
||||
url = ./reflections
|
BIN
lib/antlr-4.7-complete.jar
Normal file
BIN
lib/antlr-4.7-complete.jar
Normal file
Binary file not shown.
BIN
lib/asm-6.0.jar
Normal file
BIN
lib/asm-6.0.jar
Normal file
Binary file not shown.
BIN
lib/asm-6.0_BETA.jar
Normal file
BIN
lib/asm-6.0_BETA.jar
Normal file
Binary file not shown.
BIN
lib/asm-analysis-6.0.jar
Normal file
BIN
lib/asm-analysis-6.0.jar
Normal file
Binary file not shown.
BIN
lib/asm-commons-6.0.jar
Normal file
BIN
lib/asm-commons-6.0.jar
Normal file
Binary file not shown.
BIN
lib/asm-tree-6.0.jar
Normal file
BIN
lib/asm-tree-6.0.jar
Normal file
Binary file not shown.
BIN
lib/asm-util-6.0.jar
Normal file
BIN
lib/asm-util-6.0.jar
Normal file
Binary file not shown.
BIN
lib/asm-xml-6.0.jar
Normal file
BIN
lib/asm-xml-6.0.jar
Normal file
Binary file not shown.
BIN
lib/guava-19.0.jar
Normal file
BIN
lib/guava-19.0.jar
Normal file
Binary file not shown.
BIN
lib/guava-22.0.jar
Normal file
BIN
lib/guava-22.0.jar
Normal file
Binary file not shown.
BIN
lib/hamcrest-core-1.3.jar
Normal file
BIN
lib/hamcrest-core-1.3.jar
Normal file
Binary file not shown.
BIN
lib/junit-4.12.jar
Normal file
BIN
lib/junit-4.12.jar
Normal file
Binary file not shown.
BIN
lib/reflections-0.9.12-SNAPSHOT.jar
Normal file
BIN
lib/reflections-0.9.12-SNAPSHOT.jar
Normal file
Binary file not shown.
BIN
lib/src.zip
Normal file
BIN
lib/src.zip
Normal file
Binary file not shown.
77
pom.xml
77
pom.xml
@ -1,77 +0,0 @@
|
||||
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
||||
http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>de.dhbwstuttgart</groupId>
|
||||
<artifactId>JavaTXcompiler</artifactId>
|
||||
<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>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
<version>19.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.reflections</groupId>
|
||||
<artifactId>reflections</artifactId>
|
||||
<version>0.9.11</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-all</artifactId>
|
||||
<version>[4.0.0,)</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<directory>target</directory>
|
||||
<outputDirectory>target/classes</outputDirectory>
|
||||
<finalName>${artifactId}-${version}</finalName>
|
||||
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
||||
<sourceDirectory>src/</sourceDirectory>
|
||||
<testSourceDirectory>test/</testSourceDirectory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.antlr</groupId>
|
||||
<artifactId>antlr4-maven-plugin</artifactId>
|
||||
<version>4.7</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>antlr</id>
|
||||
<goals>
|
||||
<goal>antlr4</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sourceDirectory>src/de/dhbwstuttgart/parser/antlr/</sourceDirectory>
|
||||
<outputDirectory>src/de/dhbwstuttgart/parser/antlr/</outputDirectory>
|
||||
<arguments>
|
||||
<argument>-package</argument>
|
||||
<argument>de.dhbwstuttgart.parser.antlr</argument>
|
||||
</arguments>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<properties>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
</properties>
|
||||
</project>
|
Loading…
Reference in New Issue
Block a user