Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Commit

Permalink
Build file and readme for version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pieterbos committed May 17, 2016
1 parent 811d709 commit a621721
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 5 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@ It uses the ANTLR adl-grammar written by Thomas Beale at https://github.com/open

It is licensed under the Apache license.

## dependency

In gradle:

```gradle
compile 'com.nedap.healthcare:archie:0.1.0'
```

```maven
<dependency>
<groupId>com.nedap.healthcare</groupId>
<artifactId>archie</artifactId>
<version>0.1.0</version>
</dependency>
```

## Build

[![Build Status](https://travis-ci.org/nedap/archie.svg?branch=master)](https://travis-ci.org/nedap/archie)
Expand Down
23 changes: 20 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,26 @@ ext.antlrVersion = '4.5.1-1'

repositories {
mavenCentral()
mavenLocal()
maven {
url "http://dl.bintray.com/guestful/maven"
}
}

ext.reflectionsVersion = '0.9.10'
ext.jacksonVersion = '2.7.4'
dependencies {

antlr "org.antlr:antlr4:${antlrVersion}"

compile 'org.slf4j:slf4j-api:1.7.12'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.6.3'
compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
compile 'com.guestful.module:guestful.module.jsr310-extensions:1.4' //kryo java.time serializers
compile 'com.google.guava:guava:19.0'

compile "org.reflections:reflections:${reflectionsVersion}"

compile 'com.fasterxml.jackson.core:jackson-databind:2.6.3'


compile 'org.checkerframework:checker:1.9.7'

Expand Down Expand Up @@ -116,6 +117,15 @@ uploadArchives {
description 'An openEHR library, supporting ADL 2'
url 'https://github.com/nedap/archie'


repositories {
repository {
id 'guestful'
name 'guestful repository for jsr-310 extensions'
url 'http://dl.bintray.com/guestful/maven'
}
}

scm {
connection 'scm:git:https://github.com/nedap/archie.git'
developerConnection 'scm:git:[email protected]:nedap/archie.git'
Expand All @@ -140,6 +150,13 @@ uploadArchives {
}
}
}
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
// pom.withXml {
// def guestFulRepositoryNode = asNode().appendNode('repositories').appendNode('repository')
// guestFulRepositoryNode.appendNode('id', 'guestful')
// guestFulRepositoryNode.appendNode('name', 'repo for the jsr310 jackson extension')
// guestFulRepositoryNode.appendNode('url', 'http://dl.bintray.com/guestful/maven')
// }
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri May 13 11:06:51 CEST 2016
#Tue May 17 10:39:54 CEST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-all.zip

0 comments on commit a621721

Please sign in to comment.