-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e8d1be
commit aa1ffc1
Showing
55 changed files
with
13,061 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
.project | ||
.settings/ | ||
.classpath | ||
|
||
bin/ | ||
target/ | ||
.cache* | ||
|
||
/pom.xml.flatten | ||
|
||
test-repo/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# | ||
# arkon-maven-extension | ||
# | ||
|
||
# Reduce logging. | ||
quiet = true | ||
|
||
# Ignore download errors for existing files. | ||
#offline = false | ||
|
||
# Ignore "Last-Modified" header, always download. | ||
fresh = true | ||
|
||
# Path list separator character, see below. | ||
#separator = ; | ||
|
||
# Server ID in settings.xml for credentials. | ||
#serverId = arkon | ||
|
||
# Remote repository url | ||
#serverURL = https://raw.githubusercontent.com | ||
|
||
# Repository-relative resource path in the repository. | ||
#sourceDir = random-maven/arkon/master | ||
|
||
# Project-relative local destination folder for download. | ||
#targetDir = .mvn | ||
|
||
# Separator-delimited download resource path list. | ||
pathList = \ | ||
pom.xml ; \ | ||
extensions.xml ; \ | ||
ci/settings.xml ; \ | ||
ci/toolchains.xml ; \ | ||
wrapper/maven-wrapper.jar ; \ | ||
wrapper/maven-wrapper.properties ; \ | ||
install.sh ; \ | ||
package.sh ; \ | ||
verify.sh ; \ | ||
site.sh ; \ | ||
release-bintray.sh ; \ | ||
release-sonatype.sh ; \ | ||
github-squash.sh ; \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | ||
|
||
<!-- CI setup. --> | ||
<servers> | ||
|
||
<!-- Bintray release. --> | ||
<server> | ||
<id>distro-bintray</id> | ||
<username>${env.BINTRAY_USERNAME}</username> | ||
<password>${env.BINTRAY_PASSWORD}</password> | ||
</server> | ||
|
||
</servers> | ||
|
||
</settings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF8"?> | ||
<toolchains> | ||
|
||
<!-- JDK toolchains --> | ||
<!-- https://maven.apache.org/guides/mini/guide-using-toolchains.html --> | ||
|
||
<toolchain> | ||
<type>jdk</type> | ||
<provides> | ||
<version>1.8</version> | ||
<vendor>oracle</vendor> | ||
</provides> | ||
<configuration> | ||
<jdkHome>/usr/lib/jvm/java-8-oracle</jdkHome> | ||
</configuration> | ||
</toolchain> | ||
|
||
</toolchains> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd"> | ||
|
||
<extension> | ||
<groupId>com.carrotgarden.maven</groupId> | ||
<artifactId>arkon-maven-extension</artifactId> | ||
<version>[1.0,1.1)</version> | ||
</extension> | ||
|
||
</extensions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
point=9e8d1be398a56cd21ba4ee2e79cb0a144c24ca37 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
set -e -u | ||
|
||
# | ||
# squash commits after a point | ||
# | ||
|
||
source "${BASH_SOURCE%/*}/github-squash.conf" | ||
|
||
git reset --soft $point | ||
git add -A | ||
git commit -m "develop" | ||
git push --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e -u | ||
|
||
# | ||
# perform local install | ||
# | ||
|
||
cd "${BASH_SOURCE%/*}/.." | ||
|
||
./mvnw.sh clean install -B -P skip-test -e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e -u | ||
|
||
# | ||
# perform local install | ||
# | ||
|
||
cd "${BASH_SOURCE%/*}/.." | ||
|
||
./mvnw.sh clean install -B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e -u | ||
|
||
# | ||
# perform quick package | ||
# | ||
|
||
cd "${BASH_SOURCE%/*}/.." | ||
|
||
./mvnw.sh clean package -B -P skip-test |
Oops, something went wrong.