-
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
ab16ace
commit feb44fb
Showing
30 changed files
with
6,587 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* | ||
|
||
*.log | ||
|
||
pom.xml.flatten |
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,30 @@ | ||
# | ||
# Available extension settings with default values. | ||
# | ||
|
||
# Reduce logging. | ||
#quiet = false | ||
|
||
# Ignore download errors for existing files. | ||
#offline = false | ||
|
||
# Ignore "Last-Modified" header, always download. | ||
#fresh = false | ||
|
||
# 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; |
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,17 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# squash commits after a point | ||
# | ||
|
||
set -e -u | ||
|
||
point=ab16ace64881ea0ba67f7f70f7fcbd832a7b7b7f | ||
|
||
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,9 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# 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,9 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# perform local install | ||
# | ||
|
||
cd "${BASH_SOURCE%/*}/.." | ||
|
||
./mvnw.sh clean package -B |
Oops, something went wrong.