Skip to content

Commit

Permalink
[Wen Hao] - add bintray.
Browse files Browse the repository at this point in the history
  • Loading branch information
wenhao committed Jul 15, 2016
1 parent 14a81e1 commit d0bfccb
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
@@ -1,8 +1,6 @@
language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
- oraclejdk8

install:
- TERM=dumb gradle assemble
Expand Down
43 changes: 43 additions & 0 deletions build.gradle
Expand Up @@ -4,6 +4,7 @@ plugins {

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'com.jfrog.bintray'

repositories {
Expand Down Expand Up @@ -60,3 +61,45 @@ bintray {
}
}
}

install {
repositories.mavenInstaller {
pom.project {
name 'jpa-spec'
description 'A JAP Query By Specification framework.'
url 'https://github.com/wenhao/jpa-spec'
inceptionYear '2016'

packaging 'jar'
groupId 'com.github.wenhao'
artifactId 'jpa-spec'
version '1.0.0'

licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}

scm {
url 'https://github.com/wenhao/jpa-spec'
connection 'https://github.com/wenhao/jpa-spec.git'
developerConnection 'git@github.com:wenhao/http.git'
}

developers {
developer {
id 'wenhao'
name 'Hao Wen'
email 'wenhao@126.com'
organization 'Hao Wen'
roles {
role 'Developer'
}
}
}
}
}
}

0 comments on commit d0bfccb

Please sign in to comment.