diff options
Diffstat (limited to 'songsterr/pom.xml')
-rw-r--r-- | songsterr/pom.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/songsterr/pom.xml b/songsterr/pom.xml new file mode 100644 index 0000000..8a7ad2a --- /dev/null +++ b/songsterr/pom.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>de.uvok.songsterr</groupId> + <artifactId>songsterr</artifactId> + <version>0.1</version> + + <repositories> + <repository> + <id>my-local-repo</id> + <url>file://${project.basedir}/repo</url> + </repository> + </repositories> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <java.version>17</java.version> + <maven.compiler.source>${java.version}</maven.compiler.source> + <maven.compiler.target>${java.version}</maven.compiler.target> + </properties> + + <dependencies> + <dependency> + <groupId>app.tuxguitar</groupId> + <artifactId>tuxguitar-lib</artifactId> + <version>9.99</version> + </dependency> + + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <version>5.9.2</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>3.0.0-M8</version> + </plugin> + </plugins> + </build> +</project> |