Skip to content

Commit 07c0d19

Browse files
committed
feat(arch): Add initial archetype implementation
1 parent 4651a90 commit 07c0d19

49 files changed

Lines changed: 3077 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pom.xml

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5+
https://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<groupId>io.github.jeffjensen</groupId>
9+
<artifactId>java-service-archetype</artifactId>
10+
<version>1.0.0-SNAPSHOT</version>
11+
<packaging>maven-archetype</packaging>
12+
13+
<name>Java Service Archetype</name>
14+
<description>
15+
Maven archetype that generates a structured multi-module Java service project
16+
with integration, service, and presentation architectural tiers.
17+
</description>
18+
<url>https://github.com/jeffjensen/java-service-archetype</url>
19+
20+
<licenses>
21+
<license>
22+
<name>Apache License, Version 2.0</name>
23+
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
24+
<distribution>repo</distribution>
25+
</license>
26+
</licenses>
27+
28+
<properties>
29+
<!-- CONFIG -->
30+
<java.version>21</java.version>
31+
<maven.compiler.release>${java.version}</maven.compiler.release>
32+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33+
<project.build.outputTimestamp>2026-06-07T00:00:00Z</project.build.outputTimestamp>
34+
35+
<!-- VERSIONS -->
36+
<maven-archetype-plugin.version>3.4.1</maven-archetype-plugin.version>
37+
<asciidoctor-parser-doxia-module.version>3.2.0</asciidoctor-parser-doxia-module.version>
38+
<central-publishing-maven-plugin.version>0.10.0</central-publishing-maven-plugin.version>
39+
<maven-deploy-plugin.version>3.1.4</maven-deploy-plugin.version>
40+
<maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version>
41+
<maven-install-plugin.version>3.1.4</maven-install-plugin.version>
42+
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
43+
<maven-resources-plugin.version>3.5.0</maven-resources-plugin.version>
44+
<maven-site-plugin.version>3.22.0</maven-site-plugin.version>
45+
<maven-surefire-plugin.version>3.5.5</maven-surefire-plugin.version>
46+
</properties>
47+
48+
<developers>
49+
<developer>
50+
<id>jeffjensen</id>
51+
<name>Jeff Jensen</name>
52+
<email>jjensen@apache.org</email>
53+
</developer>
54+
</developers>
55+
56+
<ciManagement>
57+
<system>GitHub Actions</system>
58+
<url>https://github.com/jeffjensen/java-service-archetype/actions</url>
59+
</ciManagement>
60+
<issueManagement>
61+
<system>GitHub Issues</system>
62+
<url>https://github.com/jeffjensen/java-service-archetype/issues</url>
63+
</issueManagement>
64+
<scm>
65+
<connection>scm:git:https://github.com/jeffjensen/java-service-archetype.git</connection>
66+
<developerConnection>scm:git:ssh://git@github.com/jeffjensen/java-service-archetype.git</developerConnection>
67+
<url>https://github.com/jeffjensen/java-service-archetype</url>
68+
<tag>HEAD</tag>
69+
</scm>
70+
71+
<build>
72+
<extensions>
73+
<extension>
74+
<groupId>org.apache.maven.archetype</groupId>
75+
<artifactId>archetype-packaging</artifactId>
76+
<version>${maven-archetype-plugin.version}</version>
77+
</extension>
78+
</extensions>
79+
<pluginManagement>
80+
<plugins>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-archetype-plugin</artifactId>
84+
<version>${maven-archetype-plugin.version}</version>
85+
</plugin>
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-deploy-plugin</artifactId>
89+
<version>${maven-deploy-plugin.version}</version>
90+
</plugin>
91+
<plugin>
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-gpg-plugin</artifactId>
94+
<version>${maven-gpg-plugin.version}</version>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-install-plugin</artifactId>
99+
<version>${maven-install-plugin.version}</version>
100+
</plugin>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-release-plugin</artifactId>
104+
<version>${maven-release-plugin.version}</version>
105+
<configuration>
106+
<tagNameFormat>v@{project.version}</tagNameFormat>
107+
<releaseProfiles>release</releaseProfiles>
108+
</configuration>
109+
</plugin>
110+
<plugin>
111+
<groupId>org.apache.maven.plugins</groupId>
112+
<artifactId>maven-resources-plugin</artifactId>
113+
<version>${maven-resources-plugin.version}</version>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.apache.maven.plugins</groupId>
117+
<artifactId>maven-site-plugin</artifactId>
118+
<version>${maven-site-plugin.version}</version>
119+
<dependencies>
120+
<dependency>
121+
<groupId>org.asciidoctor</groupId>
122+
<artifactId>asciidoctor-parser-doxia-module</artifactId>
123+
<version>${asciidoctor-parser-doxia-module.version}</version>
124+
</dependency>
125+
</dependencies>
126+
</plugin>
127+
<plugin>
128+
<groupId>org.apache.maven.plugins</groupId>
129+
<artifactId>maven-surefire-plugin</artifactId>
130+
<version>${maven-surefire-plugin.version}</version>
131+
<configuration>
132+
<redirectTestOutputToFile>true</redirectTestOutputToFile>
133+
</configuration>
134+
</plugin>
135+
<plugin>
136+
<groupId>org.sonatype.central</groupId>
137+
<artifactId>central-publishing-maven-plugin</artifactId>
138+
<version>${central-publishing-maven-plugin.version}</version>
139+
<extensions>true</extensions>
140+
<configuration>
141+
<publishingServerId>central-publish</publishingServerId>
142+
<autoPublish>true</autoPublish>
143+
<waitUntil>published</waitUntil>
144+
</configuration>
145+
</plugin>
146+
</plugins>
147+
</pluginManagement>
148+
<plugins>
149+
<plugin>
150+
<groupId>org.sonatype.central</groupId>
151+
<artifactId>central-publishing-maven-plugin</artifactId>
152+
</plugin>
153+
</plugins>
154+
</build>
155+
156+
<profiles>
157+
<profile>
158+
<id>release</id>
159+
<build>
160+
<plugins>
161+
<plugin>
162+
<groupId>org.apache.maven.plugins</groupId>
163+
<artifactId>maven-gpg-plugin</artifactId>
164+
<executions>
165+
<execution>
166+
<id>sign-artifacts</id>
167+
<phase>verify</phase>
168+
<goals>
169+
<goal>sign</goal>
170+
</goals>
171+
</execution>
172+
</executions>
173+
</plugin>
174+
</plugins>
175+
</build>
176+
</profile>
177+
</profiles>
178+
179+
</project>

0 commit comments

Comments
 (0)