Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gnagy committed Dec 8, 2015
1 parent c65886e commit f538d25
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 22 deletions.
53 changes: 50 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.bmuschko:gradle-nexus-plugin:2.3'
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
}
}

apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'com.bmuschko.nexus'
apply plugin: 'io.codearte.nexus-staging'

sourceCompatibility = "1.6"
targetCompatibility = "1.6"

group = 'hu.webhejj.gradle'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

repositories {
mavenCentral()
Expand All @@ -14,4 +26,39 @@ repositories {
dependencies {
compile gradleApi()
compile "org.apache.jena:jena-core:2.12.0"
}
}

nexusStaging {
packageGroup "hu.webhejj"
}

modifyPom {
project {
name 'Gradle Jena Plugin'
description 'A Gradle plugin that wraps some jena tools as gradle tasks.'
url 'https://github.com/gnagy/gradle-jena-plugin'
inceptionYear '2014'

scm {
url 'https://github.com/gnagy/gradle-jena-plugin'
connection 'scm:https://github.com/gnagy/gradle-jena-plugin.git'
developerConnection 'scm:git://github.com/gnagy/gradle-jena-plugin.git'
}

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

developers {
developer {
id 'gnagy'
name 'Gergely Nagy'
email 'greg@webhejj.hu'
}
}
}
}
19 changes: 0 additions & 19 deletions settings.gradle

This file was deleted.

0 comments on commit f538d25

Please sign in to comment.