Skip to content

Commit

Permalink
Fixes #35 - Change project into parent POM structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Automated workflow committed Nov 27, 2023
1 parent 50b6717 commit 4beaac8
Show file tree
Hide file tree
Showing 15 changed files with 69 additions and 50 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/nbproject/
/target/
/impl/target/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
62 changes: 62 additions & 0 deletions impl/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?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>
<parent>
<groupId>com.manorrock.cheetah</groupId>
<artifactId>project</artifactId>
<version>23.5.0-SNAPSHOT</version>
</parent>
<artifactId>cheetah-impl</artifactId>
<packaging>jar</packaging>
<name>Manorrock Cheetah</name>
<properties>
<!-- dependencies -->
<hamcrest-core.version>1.3</hamcrest-core.version>
<jakarta.version>10.0.0</jakarta.version>
<junit.version>4.13.2</junit.version>
<!-- other -->
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- plugins -->
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-web-api</artifactId>
<version>${jakarta.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>tck</id>
</profile>
</profiles>
</project>
56 changes: 6 additions & 50 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,55 +5,11 @@
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>com.manorrock.cheetah</groupId>
<artifactId>cheetah</artifactId>
<artifactId>project</artifactId>
<version>23.5.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Manorrock Cheetah</name>
<properties>
<!-- dependencies -->
<hamcrest-core.version>1.3</hamcrest-core.version>
<jakarta.version>10.0.0</jakarta.version>
<junit.version>4.13.2</junit.version>
<!-- other -->
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- plugins -->
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-web-api</artifactId>
<version>${jakarta.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>tck</id>
</profile>
</profiles>
<packaging>pom</packaging>
<name>Manorrock Cheetah - Project</name>
<modules>
<module>impl</module>
</modules>
</project>

0 comments on commit 4beaac8

Please sign in to comment.