Skip to content

Commit

Permalink
added release plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
leafknode committed Mar 24, 2012
1 parent 454694f commit 966067a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
24 changes: 17 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,30 +1,40 @@
// Project info
group = "org.primeframework"
version = "1.0"
version = "0.1"
description = "Prime Mock Framework"

// Plugins
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'integration'
apply plugin: "java"
apply plugin: "idea"
apply plugin: "integration"
apply plugin: "release"

// Build script config
buildscript {
repositories {
ivy {
name "inversoftPublic"
ivyPattern "http://hawking.inversoft.com/repository/public/[organisation]/[module]/[revision]/ivy.xml"
artifactPattern "http://hawking.inversoft.com/repository/public/[organisation]/[module]/[revision]/[type]s/[artifact]-[revision].[ext]"
}
ivy {
url "${project.gradle.gradleUserHomeDir}/integration-cache"
}
}
dependencies {
classpath(
"org.primeframework.gradle:gradle-integration-plugin:0.1"
)
classpath "org.primeframework.gradle:gradle-integration-plugin:0.1",
"org.primeframework.gradle:gradle-release-plugin:0.1"
}
}

// Dependencies
repositories {
mavenCentral()
ivy {
name "releaseRepository"
ivyPattern "file:///$releasePlugin.inversoftIvyGitRepo/repository/public/[organisation]/[module]/[revision]/ivy.xml"
artifactPattern "file:///$releasePlugin.inversoftIvyGitRepo/repository/public/[organisation]/[module]/[revision]/[type]s/[artifact]-[revision].[ext]"
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions prime-mock.ipr
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@
<component name="EntryPointsManager">
<entry_points version="2.0" />
</component>
<component name="GradleSettings">
<option name="gradleHome" value="$GRADLE_HOME$" />
</component>
<component name="IdProvider" IDEtalkID="48656785D03D58D25DFE1FF5509FE923" />
<component name="JavadocGenerationManager">
<option name="OUTPUT_DIRECTORY" />
Expand Down

0 comments on commit 966067a

Please sign in to comment.