Skip to content

Commit

Permalink
develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei-Pozolotin committed Dec 14, 2017
1 parent 9e8d1be commit aa1ffc1
Show file tree
Hide file tree
Showing 55 changed files with 13,061 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .gitignore
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/
43 changes: 43 additions & 0 deletions .mvn/arkon.props
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 ; \
16 changes: 16 additions & 0 deletions .mvn/ci/settings.xml
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>
18 changes: 18 additions & 0 deletions .mvn/ci/toolchains.xml
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>
10 changes: 10 additions & 0 deletions .mvn/extensions.xml
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>
2 changes: 2 additions & 0 deletions .mvn/github-squash.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

point=9e8d1be398a56cd21ba4ee2e79cb0a144c24ca37
13 changes: 13 additions & 0 deletions .mvn/github-squash.sh
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
10 changes: 10 additions & 0 deletions .mvn/install-fast.sh
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
10 changes: 10 additions & 0 deletions .mvn/install.sh
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
10 changes: 10 additions & 0 deletions .mvn/package.sh
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
Loading

0 comments on commit aa1ffc1

Please sign in to comment.