Skip to content

Commit

Permalink
Update getting started pages
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Dec 19, 2024
1 parent 0f08681 commit 4239406
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
7 changes: 4 additions & 3 deletions docs/modules/quick-start/pages/ant.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ project:
license: Apache-2
links:
homepage: pass:[https://acme.com/app]
java:
groupId: com.acme
version: 8
languages:
java:
groupId: com.acme
version: 8
inceptionYear: 2021
release:
Expand Down
7 changes: 4 additions & 3 deletions docs/modules/quick-start/pages/cli.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ project:
license: Apache-2
links:
homepage: pass:[https://acme.com/app]
java:
groupId: com.acme
version: 8
languages:
java:
groupId: com.acme
version: 8
inceptionYear: 2021
release:
Expand Down
16 changes: 8 additions & 8 deletions docs/modules/quick-start/pages/maven.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,20 @@ You also have to configure the xref:tools:jreleaser-maven.adoc[jreleaser-maven-p
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<version>3.5.0</version>
<configuration>
<mainClass>${app.main.class}</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.4.2</version>
<configuration>
<archive>
<manifest>
Expand Down Expand Up @@ -106,7 +106,7 @@ You also have to configure the xref:tools:jreleaser-maven.adoc[jreleaser-maven-p
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.2.0</version>
<version>3.7.1</version>
<configuration>
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
Expand Down Expand Up @@ -191,27 +191,27 @@ $ mvn jreleaser:full-release
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Home/duke/app/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ app ---
[INFO] --- maven-compiler-plugin:3.13.0:compile (default-compile) @ app ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to /Home/duke/app/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ app ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Home/duke/app/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ app ---
[INFO] --- maven-compiler-plugin:3.13.0:testCompile (default-testCompile) @ app ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ app ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ app ---
[INFO] --- maven-jar-plugin:3.4.2:jar (default-jar) @ app ---
[INFO] Building jar: /Home/duke/app/target/app-1.0.0.jar
[INFO]
[INFO] --- appassembler-maven-plugin:2.1.0:assemble (make-distribution) @ app ---
[INFO] Installing artifact /Home/duke/app/target/app-1.0.0.jar to /Home/duke/app/target/binary/lib/app-1.0.0.jar
[INFO]
[INFO] --- maven-assembly-plugin:3.2.0:single (make-distribution) @ app ---
[INFO] --- maven-assembly-plugin:3.7.1:single (make-distribution) @ app ---
[INFO] Reading assembly descriptor: src/main/assembly/assembly.xml
[INFO] Building tar: /Home/duke/app/target/distributions/app/app-1.0.0.tar.gz
[INFO] Building zip: /Home/duke/app/target/distributions/app/app-1.0.0.zip
Expand Down

0 comments on commit 4239406

Please sign in to comment.