This repository was archived by the owner on Apr 7, 2021. It is now read-only.
File tree 3 files changed +40
-3
lines changed
3 files changed +40
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Java Maven CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/language-java/ for more details
4
+ #
5
+ version : 2
6
+ jobs :
7
+ build :
8
+ docker :
9
+ # specify the version you desire here
10
+ - image : circleci/openjdk:8-jdk
11
+
12
+ working_directory : ~/repo
13
+
14
+ environment :
15
+ # Customize the JVM maximum heap limit
16
+ MAVEN_OPTS : -Xmx3200m
17
+
18
+ steps :
19
+ - checkout
20
+
21
+ # Download and cache dependencies
22
+ - restore_cache :
23
+ keys :
24
+ - v1-dependencies-{{ checksum "pom.xml" }}
25
+ # fallback to using the latest cache if no exact match is found
26
+ - v1-dependencies-
27
+
28
+ - run : mvn dependency:go-offline
29
+
30
+ - save_cache :
31
+ paths :
32
+ - ~/.m2
33
+ key : v1-dependencies-{{ checksum "pom.xml" }}
34
+
35
+ # run tests!
36
+ - run : mvn integration-test
Original file line number Diff line number Diff line change @@ -87,3 +87,6 @@ nbdist/
87
87
nbactions.xml
88
88
nb-configuration.xml
89
89
.nb-gradle /
90
+
91
+ # DragonProxy
92
+ logs /
Original file line number Diff line number Diff line change 3
3
[ ![ License: GPL v3] ( https://img.shields.io/badge/License-GPL%20v3-blue.svg )] ( http://www.gnu.org/licenses/gpl-3.0 )
4
4
[ ![ Chat] ( https://img.shields.io/badge/chat-on%20discord-7289da.svg )] ( https://discord.gg/CmkxTz2 )
5
5
[ ![ Build Status] ( https://ci.codemc.org/buildStatus/icon?job=DragonetMC/DragonProxy )] ( https://ci.codemc.org/job/DragonetMC/job/DragonProxy/ )
6
+ [ ![ HitCount] ( http://hits.dwyl.io/DragonetMC/DragonProxy.svg )] ( http://hits.dwyl.io/DragonetMC/DragonProxy )
6
7
7
8
A proxy made to allow ** Minecraft: Bedrock Edition** clients to connect to ** Minecraft: Java Edition** servers.
8
9
@@ -47,6 +48,3 @@ Clone the repo recursively and then run `mvn clean install`. The output jar will
47
48
### Libraries used
48
49
* [ NukkitX Protocol Library] ( https://github.com/NukkitX/Protocol )
49
50
* [ MCProtocolLib by Steveice10] ( https://github.com/Steveice10/MCProtocolLib )
50
-
51
-
52
- [ ![ HitCount] ( http://hits.dwyl.io/DragonetMC/DragonProxy.svg )] ( http://hits.dwyl.io/DragonetMC/DragonProxy )
You can’t perform that action at this time.
0 commit comments