Skip to content

Commit

Permalink
develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei-Pozolotin committed Dec 3, 2017
1 parent ab16ace commit feb44fb
Show file tree
Hide file tree
Showing 30 changed files with 6,587 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*

*.log

pom.xml.flatten
30 changes: 30 additions & 0 deletions .mvn/arkon.props
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;
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>
17 changes: 17 additions & 0 deletions .mvn/github-squash.sh
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
9 changes: 9 additions & 0 deletions .mvn/install.sh
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
9 changes: 9 additions & 0 deletions .mvn/package.sh
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
Loading

0 comments on commit feb44fb

Please sign in to comment.