-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from inforion/v0.8.01
Version 0.8.01
- Loading branch information
Showing
77 changed files
with
10,245 additions
and
510 deletions.
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,25 @@ | ||
.DS_Store | ||
.git | ||
.gitignore | ||
.dockerignore | ||
.idea | ||
*.iml | ||
|
||
veosroot | ||
scripts | ||
venv | ||
temp | ||
resources | ||
production | ||
build | ||
**/*/build | ||
**/*/buildroot | ||
.gradle | ||
.gradle-cache | ||
|
||
docker-build.sh | ||
settings*.gradle | ||
!settings.generic.gradle | ||
|
||
kopycat-modules | ||
kc*.tar.gz |
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 |
---|---|---|
|
@@ -50,5 +50,8 @@ resources/ | |
*.log | ||
|
||
*.kate-swp | ||
.m2 | ||
/*.tar* | ||
|
||
|
||
.gradle-cache | ||
*_PACKING |
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,28 @@ | ||
FROM openjdk:11 | ||
|
||
RUN apt-get update -y --allow-releaseinfo-change && \ | ||
apt-get install -y bash sed git socat picocom && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /opt/kopycat | ||
|
||
COPY . /opt/kopycat/ | ||
COPY settings.generic.gradle ./settings.gradle | ||
|
||
RUN echo "Copying m2 (if exists)..." && \ | ||
if [ -d ./.m2 ]; then mv -v ./.m2 /root/.m2; fi && \ | ||
echo "Setting up git repository..." && \ | ||
git config --global init.defaultBranch master && \ | ||
git config --global user.email unknown && \ | ||
git config --global user.name unknown && \ | ||
git init && \ | ||
touch README.md && \ | ||
git add README.md && \ | ||
git commit -m "Initial commit" && \ | ||
echo "Setting up the project..." && \ | ||
sed -i 's/\r//' ./gradlew && \ | ||
./gradlew --no-daemon -i classes && \ | ||
echo "Post-process clearance" && \ | ||
./gradlew --no-daemon -i clean && \ | ||
rm -rf /root/.gradle && \ | ||
echo "Finished" |
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.8.00 | ||
0.8.01 |
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
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
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
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
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,3 @@ | ||
kotlin.daemon.jvmargs=-Xmx10G | ||
org.gradle.caching=true | ||
org.gradle.parallel=true |
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
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
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
Oops, something went wrong.