-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Applied maven publisher and version to 0.1.3
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ subprojects { | |
apply plugin: 'java' | ||
apply plugin: 'eclipse' | ||
apply plugin: 'maven' | ||
apply plugin: 'maven-publish' | ||
apply plugin: 'signing' | ||
|
||
sourceCompatibility = JavaVersion.VERSION_1_6 | ||
|
@@ -37,7 +38,7 @@ subprojects { | |
|
||
project(':fluent-hibernate-core') { | ||
group = "com.github.v-ladynev" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
description = "Library to work with Hibernate by fluent API" | ||
archivesBaseName = "fluent-hibernate-core" | ||
|
||
|
@@ -64,7 +65,6 @@ project(':fluent-hibernate-core') { | |
pom.project { | ||
name 'Fluent Hibernate Core' | ||
packaging 'jar' | ||
// optionally artifactId can be defined here | ||
description "A library to work with Hibernate by fluent API. This library hasn't dependencies except Hibernate dependencies. It requires Java 1.6 and above." | ||
url 'https://github.com/v-ladynev/fluent-hibernate' | ||
|
||
|
@@ -85,15 +85,15 @@ project(':fluent-hibernate-core') { | |
developer { | ||
id 'v-ladynev' | ||
name 'Vladimir Ladynev' | ||
email 'priv@sonatype.com' | ||
email 'v-ladynev@sonatype.com' | ||
} | ||
developer { | ||
id 'levvy' | ||
name 'Lucas Levvy' | ||
email '[email protected]' | ||
} | ||
} | ||
} | ||
}.writeTo("build/libs/"+archivesBaseName+"-"+version+".pom") | ||
} | ||
} | ||
} | ||
|