Skip to content

Commit b5dc97f

Browse files
committed
add some example modules, instructions, basic setup etc
1 parent 1a73848 commit b5dc97f

9 files changed

+872
-0
lines changed

.github/workflows/maven-publish.yml

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
2+
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
3+
4+
name: Maven Package
5+
6+
on:
7+
release:
8+
types: [created]
9+
push:
10+
branches:
11+
- '*'
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
permissions:
17+
contents: read
18+
packages: write
19+
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Set up JDK 17
23+
uses: actions/setup-java@v4 #https://github.com/actions/setup-java
24+
with:
25+
java-version: '17'
26+
distribution: 'temurin'
27+
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml # ID of the distributionManagement repository in the pom.xml file. Default is github.
28+
# server-username: GITHUB_ACTOR # Environment variable name for the username for authentication to the Apache Maven repository. Default is GITHUB_ACTOR.
29+
# server-password: GITHUB_TOKEN # Environment variable name for password or token for authentication to the Apache Maven repository. Default is GITHUB_TOKEN.
30+
#settings-path: ${{ github.workspace }} # location for the settings.xml file # Maven related setting to point to the directory where the settings.xml file will be written. Default is ~/.m2.
31+
32+
- name: Show file content v3
33+
run: cat ~/.m2/settings.xml
34+
continue-on-error: true
35+
# - name: Show file content v4
36+
# run: cat .github/settings.xml
37+
# continue-on-error: true
38+
39+
- name: Build with Maven
40+
run: mvn -B package --file pom.xml
41+
42+
- name: Show file content v3
43+
run: cat ~/.m2/settings.xml
44+
continue-on-error: true
45+
# - name: Show file content v4
46+
# run: cat .github/settings.xml
47+
# continue-on-error: true
48+
49+
# - name: Publish to GitHub Packages Apache Maven
50+
# #run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
51+
# run: ./mvnw deploy
52+
# env:
53+
# GITHUB_TOKEN: ${{ github.token }}
54+
# GITHUB_ACTOR: ${{ secrets.DEPLOY_GITHUB_USERNAME }}
55+
56+
- name: Publish to GitHub Packages Apache Maven
57+
#run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
58+
run: ./mvnw deploy
59+
env:
60+
GITHUB_TOKEN: ${{ secrets.DEPLOY_GITHUB_TOKEN }}
61+
GITHUB_ACTOR: ${{ secrets.DEPLOY_GITHUB_USERNAME }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
2+
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
3+
4+
name: Maven Package publish to single repo for all
5+
6+
on:
7+
release:
8+
types: [created]
9+
push:
10+
branches:
11+
- '*'
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
permissions:
17+
contents: read
18+
packages: write
19+
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Set up JDK 17
23+
uses: actions/setup-java@v4 #https://github.com/actions/setup-java
24+
with:
25+
java-version: '17'
26+
distribution: 'temurin'
27+
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml # ID of the distributionManagement repository in the pom.xml file. Default is github.
28+
# server-username: GITHUB_ACTOR # Environment variable name for the username for authentication to the Apache Maven repository. Default is GITHUB_ACTOR.
29+
# server-password: GITHUB_TOKEN # Environment variable name for password or token for authentication to the Apache Maven repository. Default is GITHUB_TOKEN.
30+
#settings-path: ${{ github.workspace }} # location for the settings.xml file # Maven related setting to point to the directory where the settings.xml file will be written. Default is ~/.m2.
31+
32+
- name: Show file content v3
33+
run: cat ~/.m2/settings.xml
34+
continue-on-error: true
35+
# - name: Show file content v4
36+
# run: cat .github/settings.xml
37+
# continue-on-error: true
38+
39+
- name: Build with Maven
40+
run: mvn -B package --file pom.xml
41+
42+
- name: Show file content v3
43+
run: cat ~/.m2/settings.xml
44+
continue-on-error: true
45+
# - name: Show file content v4
46+
# run: cat .github/settings.xml
47+
# continue-on-error: true
48+
49+
# - name: Publish to GitHub Packages Apache Maven
50+
# #run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
51+
# run: ./mvnw deploy
52+
# env:
53+
# GITHUB_TOKEN: ${{ github.token }}
54+
# GITHUB_ACTOR: ${{ secrets.DEPLOY_GITHUB_USERNAME }}
55+
56+
- name: Deploy to GitHub
57+
run: ./mvnw --batch-mode -DuseGitHubPackages=true deploy
58+
env:
59+
GITHUB_TOKEN: ${{ secrets.DEPLOY_GITHUB_TOKEN }}
60+
GITHUB_ACTOR: ${{ secrets.DEPLOY_GITHUB_USERNAME }}

.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,47 @@ buildNumber.properties
1515
.project
1616
# JDT-specific (Eclipse Java Development Tools)
1717
.classpath
18+
19+
target/
20+
!.mvn/wrapper/maven-wrapper.jar
21+
!**/src/main/**/target/
22+
!**/src/test/**/target/
23+
24+
### IntelliJ IDEA ###
25+
.idea/modules.xml
26+
.idea/jarRepositories.xml
27+
.idea/compiler.xml
28+
.idea/libraries/
29+
*.idea/
30+
.idea/jpa-buddy.xml
31+
.idea/misc.xml
32+
.idea/encodings.xml
33+
.idea
34+
*.iws
35+
*.iml
36+
*.ipr
37+
38+
### Eclipse ###
39+
.apt_generated
40+
.classpath
41+
.factorypath
42+
.project
43+
.settings
44+
.springBeans
45+
.sts4-cache
46+
47+
### NetBeans ###
48+
/nbproject/private/
49+
/nbbuild/
50+
/dist/
51+
/nbdist/
52+
/.nb-gradle/
53+
build/
54+
!**/src/main/**/build/
55+
!**/src/test/**/build/
56+
57+
### VS Code ###
58+
.vscode/
59+
60+
### Mac OS ###
61+
.DS_Store
+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/*
2+
* Copyright 2007-present the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
import java.net.*;
17+
import java.io.*;
18+
import java.nio.channels.*;
19+
import java.util.Properties;
20+
21+
public class MavenWrapperDownloader {
22+
23+
private static final String WRAPPER_VERSION = "0.5.6";
24+
/**
25+
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
26+
*/
27+
private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
28+
+ WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
29+
30+
/**
31+
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
32+
* use instead of the default one.
33+
*/
34+
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
35+
".mvn/wrapper/maven-wrapper.properties";
36+
37+
/**
38+
* Path where the maven-wrapper.jar will be saved to.
39+
*/
40+
private static final String MAVEN_WRAPPER_JAR_PATH =
41+
".mvn/wrapper/maven-wrapper.jar";
42+
43+
/**
44+
* Name of the property which should be used to override the default download url for the wrapper.
45+
*/
46+
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
47+
48+
public static void main(String args[]) {
49+
System.out.println("- Downloader started");
50+
File baseDirectory = new File(args[0]);
51+
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
52+
53+
// If the maven-wrapper.properties exists, read it and check if it contains a custom
54+
// wrapperUrl parameter.
55+
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
56+
String url = DEFAULT_DOWNLOAD_URL;
57+
if(mavenWrapperPropertyFile.exists()) {
58+
FileInputStream mavenWrapperPropertyFileInputStream = null;
59+
try {
60+
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
61+
Properties mavenWrapperProperties = new Properties();
62+
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
63+
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
64+
} catch (IOException e) {
65+
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
66+
} finally {
67+
try {
68+
if(mavenWrapperPropertyFileInputStream != null) {
69+
mavenWrapperPropertyFileInputStream.close();
70+
}
71+
} catch (IOException e) {
72+
// Ignore ...
73+
}
74+
}
75+
}
76+
System.out.println("- Downloading from: " + url);
77+
78+
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
79+
if(!outputFile.getParentFile().exists()) {
80+
if(!outputFile.getParentFile().mkdirs()) {
81+
System.out.println(
82+
"- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
83+
}
84+
}
85+
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
86+
try {
87+
downloadFileFromURL(url, outputFile);
88+
System.out.println("Done");
89+
System.exit(0);
90+
} catch (Throwable e) {
91+
System.out.println("- Error downloading");
92+
e.printStackTrace();
93+
System.exit(1);
94+
}
95+
}
96+
97+
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
98+
if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
99+
String username = System.getenv("MVNW_USERNAME");
100+
char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
101+
Authenticator.setDefault(new Authenticator() {
102+
@Override
103+
protected PasswordAuthentication getPasswordAuthentication() {
104+
return new PasswordAuthentication(username, password);
105+
}
106+
});
107+
}
108+
URL website = new URL(urlString);
109+
ReadableByteChannel rbc;
110+
rbc = Channels.newChannel(website.openStream());
111+
FileOutputStream fos = new FileOutputStream(destination);
112+
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
113+
fos.close();
114+
rbc.close();
115+
}
116+
117+
}

.mvn/wrapper/maven-wrapper.jar

49.5 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
2+
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar

0 commit comments

Comments
 (0)