diff options
Diffstat (limited to 'songsterr-reader/pom.xml')
-rw-r--r-- | songsterr-reader/pom.xml | 49 |
1 files changed, 8 insertions, 41 deletions
diff --git a/songsterr-reader/pom.xml b/songsterr-reader/pom.xml index 9465023..1f64176 100644 --- a/songsterr-reader/pom.xml +++ b/songsterr-reader/pom.xml @@ -1,48 +1,15 @@ <?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"> +<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-reader</artifactId> - <version>0.1</version> - <repositories> - <repository> - <id>my-local-repo</id> - <url>file://${project.basedir}/repo</url> - </repository> - </repositories> + <parent> + <groupId>de.uvok.tuxguitar</groupId> + <artifactId>songsterr-plugins</artifactId> + <version>0.1</version> + </parent> - <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> |