Skip to content

Commit 5573fea

Browse files
committed
Added travis build, switched to gradle
1 parent c192752 commit 5573fea

8 files changed

Lines changed: 285 additions & 63 deletions

File tree

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: java
2+
jdk:
3+
- oraclejdk8
4+
notifications:
5+
email: false
6+
before_install:
7+
- chmod +x gradlew

build.gradle

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
apply plugin: 'java'
2+
apply plugin: 'maven'
3+
4+
group = 'com.beaudoin.jmm'
5+
version = '1.0'
6+
7+
repositories {
8+
mavenCentral()
9+
10+
maven { url "https://jitpack.io" }
11+
}
12+
13+
dependencies {
14+
compile "net.java.dev.jna:jna-platform:4.2.2"
15+
compile "net.openhft:zero-allocation-hashing:0.6"
16+
testCompile group: 'junit', name: 'junit', version:'4.11'
17+
}

gradle/wrapper/gradle-wrapper.jar

52.1 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Sat Jul 16 17:50:32 EDT 2016
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-all.zip

gradlew

Lines changed: 164 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

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

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'Java-Memory-Manipulation'

0 commit comments

Comments
 (0)