Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit 12f8ef5

Browse files
committed
Add circleci
1 parent ef74db9 commit 12f8ef5

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed

.circleci/config.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,6 @@ nbdist/
8787
nbactions.xml
8888
nb-configuration.xml
8989
.nb-gradle/
90+
91+
# DragonProxy
92+
logs/

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)
44
[![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/CmkxTz2)
55
[![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)
67

78
A proxy made to allow **Minecraft: Bedrock Edition** clients to connect to **Minecraft: Java Edition** servers.
89

@@ -47,6 +48,3 @@ Clone the repo recursively and then run `mvn clean install`. The output jar will
4748
### Libraries used
4849
* [NukkitX Protocol Library](https://github.com/NukkitX/Protocol)
4950
* [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)

0 commit comments

Comments
 (0)