File tree Expand file tree Collapse file tree 4 files changed +66
-13
lines changed
Expand file tree Collapse file tree 4 files changed +66
-13
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ jobs :
3+ build :
4+ working_directory : ~/ConnorLinfoot/TitleAPI
5+ parallelism : 1
6+ shell : /bin/bash --login
7+ environment :
8+ CIRCLE_ARTIFACTS : /tmp/circleci-artifacts
9+ CIRCLE_TEST_REPORTS : /tmp/circleci-test-results
10+ docker :
11+ - image : maven:3-jdk-8
12+ command : bash
13+ steps :
14+ - checkout
15+ - run : mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS
16+ - restore_cache :
17+ keys :
18+ - v1-dep-{{ .Branch }}-
19+ - v1-dep-master-
20+ - v1-dep-
21+ - run : java -version
22+ - run : mvn -version
23+ - run : mvn clean package install
24+ - run : mv target/*.jar $CIRCLE_ARTIFACTS/
25+ - run : mvn dependency:resolve
26+ - save_cache :
27+ key : v1-dep-{{ .Branch }}-{{ epoch }}
28+ paths :
29+ - vendor/bundle
30+ - ~/virtualenvs
31+ - ~/.m2
32+ - ~/.ivy2
33+ - ~/.bundle
34+ - ~/.go_workspace
35+ - ~/.gradle
36+ - ~/.cache/bower
37+ - run : mvn integration-test
38+ - store_test_results :
39+ path : /tmp/circleci-test-results
40+ - store_artifacts :
41+ path : /tmp/circleci-artifacts
42+ - store_artifacts :
43+ path : /tmp/circleci-test-results
Original file line number Diff line number Diff line change @@ -2,6 +2,27 @@ TitleAPI
22=====================
33
44[ ![ CircleCI] ( https://circleci.com/gh/ConnorLinfoot/TitleAPI/tree/master.svg?style=svg )] ( https://api.connorlinfoot.com/v1/ci/artifact/TitleAPI/latest/download )
5+ [ ![ ] ( https://jitpack.io/v/ConnorLinfoot/TitleAPI.svg )] ( https://jitpack.io/#ConnorLinfoot/TitleAPI )
6+
7+ ## Maven
8+ This library can be found on [ JitPack] ( https://jitpack.io/#ConnorLinfoot/TitleAPI ) for easy integration into maven
9+ projects.
10+ ``` xml
11+ <repositories >
12+ <repository >
13+ <id >jitpack.io</id >
14+ <url >https://jitpack.io</url >
15+ </repository >
16+ </repositories >
17+
18+ <dependencies >
19+ <dependency >
20+ <groupId >com.github.ConnorLinfoot</groupId >
21+ <artifactId >TitleAPI</artifactId >
22+ <version >1.7.6</version >
23+ </dependency >
24+ </dependencies >
25+ ```
526
627Spigot Page/More Info: http://www.spigotmc.org/resources/titleapi.1325/
728
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2929 <artifactId >maven-compiler-plugin</artifactId >
3030 <version >3.0</version >
3131 <configuration >
32- <source >1.6 </source >
33- <target >1.6 </target >
32+ <source >1.8 </source >
33+ <target >1.8 </target >
3434 </configuration >
3535 </plugin >
3636 </plugins >
You can’t perform that action at this time.
0 commit comments