Skip to content

Commit 198799c

Browse files
committed
First test version
1 parent 7b4e1f5 commit 198799c

6 files changed

Lines changed: 144 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: pull_request-opened-synchronize-reopened-event
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
job:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out github-actions repo
13+
uses: actions/checkout@v6
14+
with:
15+
repository: aerius/github-actions
16+
path: aerius-github-actions
17+
ref: v1.1
18+
19+
- uses: aerius/github-actions/events/pull_request-event-action@v1.1
20+
with:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
# ROOT_POM_DIRECTORY: repo/source

.github/workflows/on-push.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: push-event
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
job:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Check out github-actions repo
12+
uses: actions/checkout@v6
13+
with:
14+
repository: aerius/github-actions
15+
path: aerius-github-actions
16+
ref: v1.1
17+
18+
- uses: aerius/github-actions/events/push-event-action@v1.1
19+
with:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
22+
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
23+
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
24+
# ROOT_POM_DIRECTORY: repo/source
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: release-published-event
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
job:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out github-actions repo
13+
uses: actions/checkout@v6
14+
with:
15+
repository: aerius/github-actions
16+
path: aerius-github-actions
17+
ref: v1.1
18+
19+
- uses: aerius/github-actions/events/release-event-action@v1.1
20+
with:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
23+
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
24+
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
25+
# ROOT_POM_DIRECTORY: repo/source

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target

pom.xml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<!--
2+
3+
Copyright the State of the Netherlands
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU Affero General Public License as published by
7+
the Free Software Foundation, either version 3 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU Affero General Public License for more details.
14+
15+
You should have received a copy of the GNU Affero General Public License
16+
along with this program. If not, see http://www.gnu.org/licenses/.
17+
18+
-->
19+
<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/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<groupId>nl.aerius</groupId>
23+
<artifactId>github-actions-test</artifactId>
24+
<version>1.0.0-SNAPSHOT</version>
25+
26+
<name>github-actions-test</name>
27+
28+
<distributionManagement>
29+
<repository>
30+
<id>aerius-nexus</id>
31+
<url>https://nexus.aerius.nl/repository/maven-releases/</url>
32+
</repository>
33+
<snapshotRepository>
34+
<id>aerius-nexus</id>
35+
<url>https://nexus.aerius.nl/repository/maven-snapshots/</url>
36+
</snapshotRepository>
37+
</distributionManagement>
38+
39+
<repositories>
40+
<repository>
41+
<id>aerius-nexus-public</id>
42+
<name>AERIUS Nexus repository</name>
43+
<url>https://nexus.aerius.nl/repository/maven-public/</url>
44+
</repository>
45+
</repositories>
46+
<pluginRepositories>
47+
<pluginRepository>
48+
<id>aerius-nexus-public</id>
49+
<name>AERIUS Nexus Repository</name>
50+
<url>https://nexus.aerius.nl/repository/maven-public/</url>
51+
</pluginRepository>
52+
</pluginRepositories>
53+
54+
<build>
55+
<pluginManagement>
56+
<plugins>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-jar-plugin</artifactId>
60+
<version>3.5.0</version>
61+
<configuration>
62+
<archive>
63+
<manifest>
64+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
65+
</manifest>
66+
</archive>
67+
</configuration>
68+
</plugin>
69+
</plugins>
70+
</pluginManagement>
71+
</build>
72+
</project>

src/main/java/EMPTY_DIR

Whitespace-only changes.

0 commit comments

Comments
 (0)