]> git.laktatnebel.de Git - domainverwaltung.git/commitdiff
poms nach modularisierung neu
authorOle B. Rosentreter <ole@laktatnebel.de>
Sat, 5 Oct 2024 14:39:44 +0000 (16:39 +0200)
committerOle B. Rosentreter <ole@laktatnebel.de>
Sat, 5 Oct 2024 14:39:44 +0000 (16:39 +0200)
domainverwaltung-db/pom.xml [new file with mode: 0644]
domainverwaltung-service/pom.xml [new file with mode: 0644]
domainverwaltung-web/pom.xml [new file with mode: 0644]
domainverwaltung-webapp/pom.xml [new file with mode: 0644]
pom.xml
pom.xml.OLD [new file with mode: 0644]

diff --git a/domainverwaltung-db/pom.xml b/domainverwaltung-db/pom.xml
new file mode 100644 (file)
index 0000000..1c42b0c
--- /dev/null
@@ -0,0 +1,18 @@
+<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/maven-v4_0_0.xsd">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>de.laktatnebel.tools</groupId>
+       <artifactId>domainverwaltung-db</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+       <packaging>pom</packaging>
+
+       <name>${product.artifactId}</name>
+       <description>Domainverwaltung DB</description>
+
+       <parent>
+               <groupId>de.laktatnebel.maven</groupId>
+               <artifactId>laktatnebelscript</artifactId>
+               <version>2.1.9</version>
+       </parent>
+
+</project>
diff --git a/domainverwaltung-service/pom.xml b/domainverwaltung-service/pom.xml
new file mode 100644 (file)
index 0000000..9c255ab
--- /dev/null
@@ -0,0 +1,268 @@
+<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/maven-v4_0_0.xsd">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>de.laktatnebel.tools</groupId>
+       <artifactId>domainverwaltung-service</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+       <packaging>jar</packaging>
+
+       <name>${product.artifactId}</name>
+       <description>Domainverwaltung</description>
+
+    <parent>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-starter-parent</artifactId>
+        <version>3.0.2</version>
+        <relativePath/> <!-- lookup parent from repository -->
+    </parent>
+
+       <properties>
+               <java.version>17</java.version>
+               <json.version>20230227</json.version>
+               
+               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+               <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+               <maven.compiler.source>${java.version}</maven.compiler.source>
+               <maven.compiler.target>${java.version}</maven.compiler.target>
+
+               <maven-enforcer-plugin.version>3.3.0</maven-enforcer-plugin.version>
+
+               <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
+               <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
+               <maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
+
+               <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
+               <maven-war-plugin.version>3.3.2</maven-war-plugin.version>
+               <maven-ear-plugin.version>3.3.0</maven-ear-plugin.version>
+               <maven-assembly-plugin.version>3.5.0</maven-assembly-plugin.version>
+               <maven-dependency-plugin.version>3.5.0</maven-dependency-plugin.version>
+
+               <maven-release-plugin.version>3.0.0</maven-release-plugin.version>
+               <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
+               <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
+               <maven-site-plugin.version>4.0.0-M6</maven-site-plugin.version>
+
+               <junit.version>4.13.2</junit.version>
+
+               <tomcat7-maven-plugin.version>2.2</tomcat7-maven-plugin.version>
+
+               <javadoc.opts>-Xdoclint:none</javadoc.opts>
+       </properties>
+
+       <dependencyManagement>
+               <dependencies>
+
+                       <!-- https://mvnrepository.com/artifact/org.json/json -->
+                       <dependency>
+                               <groupId>org.json</groupId>
+                               <artifactId>json</artifactId>
+                               <version>${json.version}</version>
+                       </dependency>
+               </dependencies>
+       </dependencyManagement>
+
+   <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-web</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.webjars</groupId>
+            <artifactId>bootstrap</artifactId>
+            <version>5.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.webjars</groupId>
+            <artifactId>bootstrap-datepicker</artifactId>
+            <version>1.9.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.webjars</groupId>
+            <artifactId>jquery</artifactId>
+            <version>3.6.1</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-devtools</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tomcat.embed</groupId>
+            <artifactId>tomcat-embed-jasper</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-test</artifactId>
+            <scope>test</scope>
+        </dependency>
+               <!-- https://mvnrepository.com/artifact/org.json/json -->
+               <dependency>
+                       <groupId>org.json</groupId>
+                       <artifactId>json</artifactId>
+               </dependency>
+   </dependencies>
+
+    <build>
+               <pluginManagement>
+                       <plugins>
+                               <plugin>
+                                       <groupId>org.apache.maven.plugins</groupId>
+                                       <artifactId>maven-javadoc-plugin</artifactId>
+                                       <version>${maven-javadoc-plugin.version}</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.maven.plugins</groupId>
+                                       <artifactId>maven-compiler-plugin</artifactId>
+                                       <version>${maven-compiler-plugin.version}</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.maven.plugins</groupId>
+                                       <artifactId>maven-enforcer-plugin</artifactId>
+                                       <version>${maven-enforcer-plugin.version}</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.maven.plugins</groupId>
+                                       <artifactId>maven-source-plugin</artifactId>
+                                       <version>${maven-source-plugin.version}</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.maven.plugins</groupId>
+                                       <artifactId>maven-deploy-plugin</artifactId>
+                                       <version>${maven-deploy-plugin.version}</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.maven.plugins</groupId>
+                                       <artifactId>maven-release-plugin</artifactId>
+                                       <version>${maven-release-plugin.version}</version>
+                                       <configuration>
+                                               <branchName>develop</branchName>
+                                               <pushChanges>false</pushChanges>
+                                               <localCheckout>true</localCheckout>
+                                               <!--tagBase>http://svn.obg-it.de/obgit/obgit_repo/tags/${project.scm.dir}</tagBase -->
+                                               <!--branchBase>http://svn.obg-it.de/obgit/obgit_repo/branches/${project.scm.dir}</branchBase -->
+                                       </configuration>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.maven.plugins</groupId>
+                                       <artifactId>maven-site-plugin</artifactId>
+                                       <version>${maven-site-plugin.version}</version>
+                                       <executions>
+                                               <execution>
+                                                       <goals>
+                                                               <goal>site</goal>
+                                                       </goals>
+                                                       <configuration>
+                                                               <reportPlugins>
+                                                                       <plugin>
+                                                                               <artifactId>maven-javadoc-plugin</artifactId>
+                                                                       </plugin>
+                                                               </reportPlugins>
+                                                       </configuration>
+                                               </execution>
+                                       </executions>
+                               </plugin>
+                       </plugins>
+               </pluginManagement>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-javadoc-plugin</artifactId>
+                               <version>${maven-javadoc-plugin.version}</version>
+                               <configuration>
+                                       <additionalparam>${javadoc.opts}</additionalparam>
+                                       <doclint>none</doclint>
+                               </configuration>
+                               <executions>
+                                       <execution>
+                                               <id>attach-javadocs</id>
+                                               <goals>
+                                                       <goal>jar</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <additionalparam>${javadoc.opts}</additionalparam>
+                                                       <doclint>none</doclint>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-site-plugin</artifactId>
+                               <version>${maven-site-plugin.version}</version>
+                       </plugin>
+                       <plugin>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <configuration>
+                                       <release>${java.version}</release>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <artifactId>maven-enforcer-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>enforce-versions</id>
+                                               <goals>
+                                                       <goal>enforce</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                               <configuration>
+                                       <!-- http://maven.apache.org/enforcer/enforcer-rules/versionRanges.html -->
+                                       <rules>
+                                               <requireMavenVersion>
+                                                       <version>[3.0,)</version>
+                                               </requireMavenVersion>
+                                               <requireJavaVersion>
+                                                       <version>${java.version}</version>
+                                               </requireJavaVersion>
+                                       </rules>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.tomcat.maven</groupId>
+                               <artifactId>tomcat7-maven-plugin</artifactId>
+                               <version>2.0</version>
+                               <configuration>
+                                       <server>localtomcat</server>
+                                       <url>http://localhost:8080/manager/text</url>
+                                       <!-- path>/${project.build.finalName}</path -->
+                                       <update>true</update>
+                               </configuration>
+                       </plugin>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+       <scm>
+               <connection>scm:git:ssh://laktatnebel.de/srv/git/swimming.git</connection>
+               <developerConnection>scm:git:ssh://laktatnebel.de/srv/git/swimming.git</developerConnection>
+               <tag>HEAD</tag>
+       </scm>
+
+       <distributionManagement>
+               <repository>
+                       <id>laktatnebel.release</id>
+                       <name>Release Repository</name>
+                       <url>file:///home/oleb/.m2/distribution</url>
+               </repository>
+               <snapshotRepository>
+                       <id>laktatnebel.snapshots</id>
+                       <uniqueVersion>false</uniqueVersion>
+                       <name>Snapshot Repository</name>
+                       <url>file:///home/oleb/.m2/distribution</url>
+               </snapshotRepository>
+               <site>
+                       <id>laktatnebel.site</id>
+                       <name>Sites</name>
+                       <url>file:///home/oleb/.m2/site</url>
+               </site>
+       </distributionManagement>
+
+</project>
diff --git a/domainverwaltung-web/pom.xml b/domainverwaltung-web/pom.xml
new file mode 100644 (file)
index 0000000..44babed
--- /dev/null
@@ -0,0 +1,18 @@
+<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/maven-v4_0_0.xsd">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>de.laktatnebel.tools</groupId>
+       <artifactId>domainverwaltung-web</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+       <packaging>pom</packaging>
+
+       <name>${product.artifactId}</name>
+       <description>Domainverwaltung WebUI</description>
+
+       <parent>
+               <groupId>de.laktatnebel.maven</groupId>
+               <artifactId>laktatnebelscript</artifactId>
+               <version>2.1.9</version>
+       </parent>
+
+</project>
diff --git a/domainverwaltung-webapp/pom.xml b/domainverwaltung-webapp/pom.xml
new file mode 100644 (file)
index 0000000..36a36d5
--- /dev/null
@@ -0,0 +1,18 @@
+<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/maven-v4_0_0.xsd">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>de.laktatnebel.tools</groupId>
+       <artifactId>domainverwaltung-webapp</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+       <packaging>pom</packaging>
+
+       <name>${product.artifactId}</name>
+       <description>Domainverwaltung UI</description>
+
+       <parent>
+               <groupId>de.laktatnebel.maven</groupId>
+               <artifactId>laktatnebelscript</artifactId>
+               <version>2.1.9</version>
+       </parent>
+
+</project>
diff --git a/pom.xml b/pom.xml
index 4f82d7788ef75f53d887cfaf5f6ef8cf74c2de5d..bdef465ac2ae1653a315b21b738a76c0f6e0b34f 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<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/maven-v4_0_0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <groupId>de.laktatnebel.tools</groupId>
@@ -6,12 +7,40 @@
        <version>0.0.1-SNAPSHOT</version>
        <packaging>pom</packaging>
 
-       <name>domainverwaltung</name>
+       <name>${product.artifactId}</name>
+       <description>Domainverwaltung</description>
 
-       <parent>
-               <groupId>de.laktatnebel.maven</groupId>
-               <artifactId>laktatnebelscript</artifactId>
-               <version>2.1.7</version>
-       </parent>
+       <modules>
+               <module>domainverwaltung-web</module>
+               <module>domainverwaltung-webapp</module>
+               <module>domainverwaltung-service</module>
+               <module>domainverwaltung-db</module>
+       </modules>
+
+       <scm>
+               <connection>scm:git:ssh://laktatnebel.de/srv/git/domainverwaltung.git</connection>
+               <developerConnection>scm:git:ssh://laktatnebel.de/srv/git/domainverwaltung.git</developerConnection>
+               <tag>HEAD</tag>
+       </scm>
+
+       <distributionManagement>
+               <repository>
+                       <id>laktatnebel.release</id>
+                       <name>Release Repository</name>
+                       <url>file:///home/oleb/.m2/distribution</url>
+               </repository>
+               <snapshotRepository>
+                       <id>laktatnebel.snapshots</id>
+                       <uniqueVersion>false</uniqueVersion>
+                       <name>Snapshot Repository</name>
+                       <url>file:///home/oleb/.m2/distribution</url>
+               </snapshotRepository>
+               <site>
+                       <id>laktatnebel.site</id>
+                       <name>Sites</name>
+                       <url>file:///home/oleb/.m2/site</url>
+               </site>
+       </distributionManagement>
 
 </project>
+
diff --git a/pom.xml.OLD b/pom.xml.OLD
new file mode 100644 (file)
index 0000000..4f82d77
--- /dev/null
@@ -0,0 +1,17 @@
+<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/maven-v4_0_0.xsd">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>de.laktatnebel.tools</groupId>
+       <artifactId>domainverwaltung</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+       <packaging>pom</packaging>
+
+       <name>domainverwaltung</name>
+
+       <parent>
+               <groupId>de.laktatnebel.maven</groupId>
+               <artifactId>laktatnebelscript</artifactId>
+               <version>2.1.7</version>
+       </parent>
+
+</project>