We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1712b59 commit ec07f14Copy full SHA for ec07f14
.github/workflows/maven.yml
@@ -55,4 +55,13 @@ jobs:
55
distribution: 'zulu'
56
57
- name: 'Build Archetype'
58
- run: mvn --no-transfer-progress -B --file pom.xml verify
+ run: mvn --no-transfer-progress -B --file pom.xml install
59
+
60
+ - name: 'Set up Java 17'
61
+ uses: actions/setup-java@v2
62
+ with:
63
+ java-version: 17
64
+ distribution: 'zulu'
65
66
+ - name: 'Test Archetype'
67
+ run: mkdir test && cd test && mvn archetype:generate -B -DarchetypeGroupId=org.moditect.ossquickstart -DarchetypeArtifactId=oss-quickstart-simple-archetype -DarchetypeVersion=1.0.0.Alpha1 -DgroupId=com.example.demos -DartifactId=fancy-project -Dversion=1.0.0-SNAPSHOT -DmoduleName=com.example.fancy && cd fancy-project && ./mvnw -B verify
0 commit comments