diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 56 |
1 files changed, 56 insertions, 0 deletions
@@ -0,0 +1,56 @@ +<?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.tuxguitar</groupId> + <artifactId>songsterr-plugins</artifactId> + <version>0.1</version> + <packaging>pom</packaging> + + <modules> + <module>songsterr-importer</module> + <module>songsterr-reader</module> + </modules> + + <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>
\ No newline at end of file |