diff options
author | uvok | 2025-07-08 17:49:16 +0200 |
---|---|---|
committer | uvok | 2025-07-08 17:49:16 +0200 |
commit | 214b155a15f01ead161a2188ef0b18e1b05c6ddb (patch) | |
tree | aacd1f702f9aaafe56a05dcf8eee8a8a677042d0 | |
parent | a2b8ad5e897b1f03380f4c686f7d7c8f44331250 (diff) |
Resturcture project
-rw-r--r-- | pom.xml | 56 | ||||
-rw-r--r-- | songsterr-importer/pom.xml | 49 | ||||
-rw-r--r-- | songsterr-importer/repo/.keep | 0 | ||||
-rw-r--r-- | songsterr-reader/pom.xml | 49 |
4 files changed, 72 insertions, 82 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 diff --git a/songsterr-importer/pom.xml b/songsterr-importer/pom.xml index 6466551..5b95bc4 100644 --- a/songsterr-importer/pom.xml +++ b/songsterr-importer/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-importer</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> diff --git a/songsterr-importer/repo/.keep b/songsterr-importer/repo/.keep deleted file mode 100644 index e69de29..0000000 --- a/songsterr-importer/repo/.keep +++ /dev/null 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> |