Skip to content

Commit a9d9117

Browse files
committed
2 parents bd09d88 + f9457ba commit a9d9117

File tree

4 files changed

+66
-13
lines changed

4 files changed

+66
-13
lines changed

.circleci/config.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff 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

627
Spigot Page/More Info: http://www.spigotmc.org/resources/titleapi.1325/
728

circle.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
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>

0 commit comments

Comments
 (0)