Skip to content

Commit fdd2212

Browse files
committed
release 1.3.0
1 parent aff56ca commit fdd2212

File tree

13 files changed

+23
-14
lines changed

13 files changed

+23
-14
lines changed

jbbp-plugins/jbbp-gradle/build.gradle

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
def jbbpVersion = project.hasProperty('jbbp_version') ? project.getProperty('jbbp_version') : "1.3.0-SNAPSHOT"
2-
def metaLibVersion = project.hasProperty('meta_lib_version') ? project.getProperty('meta_lib_version') : "1.1.2"
1+
def getProp(name,dflt) {
2+
if (project.hasProperty(name)) {
3+
return project.getProperty(name)
4+
} else {
5+
logger.warn('Can not find property "'+name+'" is not found')
6+
return dflt
7+
}
8+
}
9+
10+
def jbbpVersion = getProp('jbbp_plugin_version','1.3.0-SNAPSHOT')
11+
def metaLibVersion = getProp('meta_lib_version','1.1.2')
312

413
group = 'com.igormaznitsa'
514
version = jbbpVersion

jbbp-plugins/jbbp-gradle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.igormaznitsa</groupId>
88
<artifactId>jbbp-main-plugin-pom</artifactId>
9-
<version>1.3.0-SNAPSHOT</version>
9+
<version>1.3.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

jbbp-plugins/jbbp-maven/jbbp-maven-plugin-tests/jbbp-mvn-getterssetters/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-maven-plugin-tests</artifactId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jbbp-plugins/jbbp-maven/jbbp-maven-plugin-tests/jbbp-mvn-test-customvars/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-maven-plugin-tests</artifactId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jbbp-plugins/jbbp-maven/jbbp-maven-plugin-tests/jbbp-mvn-test-primitives/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-maven-plugin-tests</artifactId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jbbp-plugins/jbbp-maven/jbbp-maven-plugin-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-maven-plugin-pom</artifactId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jbbp-plugins/jbbp-maven/jbbp-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-maven-plugin-pom</artifactId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jbbp-plugins/jbbp-maven/jbbp-maven-plugin/src/test/resources/com/igormaznitsa/jbbp/plugin/mvn/mojoConfig.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<plugin>
1515
<groupId>com.igormaznitsa</groupId>
1616
<artifactId>jbbp-maven-plugin</artifactId>
17-
<version>1.3.0-SNAPSHOT</version>
17+
<version>1.3.0</version>
1818
<goals>
1919
<goal>generate</goal>
2020
</goals>

jbbp-plugins/jbbp-maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jbbp-main-plugin-pom</artifactId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jbbp-plugins/jbbp-plugin-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.igormaznitsa</groupId>
88
<artifactId>jbbp-main-plugin-pom</artifactId>
9-
<version>1.3.0-SNAPSHOT</version>
9+
<version>1.3.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)