Browse Source

adopt semantic versioning

tags/release-0.7.0
Decebal Suiu 10 years ago
parent
commit
e4efe65d36
9 changed files with 31 additions and 15 deletions
  1. 16
    0
      README.md
  2. 2
    2
      demo/api/pom.xml
  3. 2
    2
      demo/app/pom.xml
  4. 2
    2
      demo/plugins/plugin1/pom.xml
  5. 2
    2
      demo/plugins/plugin2/pom.xml
  6. 2
    2
      demo/plugins/pom.xml
  7. 2
    2
      demo/pom.xml
  8. 2
    2
      pf4j/pom.xml
  9. 1
    1
      pom.xml

+ 16
- 0
README.md View File

@@ -227,6 +227,22 @@ Mailing list

Much of the conversation between developers and users is managed through [mailing list] (http://groups.google.com/group/pf4j).

Versioning
------------
PF4J will be maintained under the Semantic Versioning guidelines as much as possible.

Releases will be numbered with the follow format:

`<major>.<minor>.<patch>`

And constructed with the following guidelines:

* Breaking backward compatibility bumps the major
* New additions without breaking backward compatibility bumps the minor
* Bug fixes and misc changes bump the patch

For more information on SemVer, please visit http://semver.org/.

License
--------------
Copyright 2012 Decebal Suiu

+ 2
- 2
demo/api/pom.xml View File

@@ -4,12 +4,12 @@
<parent>
<groupId>ro.fortsoft.pf4j.demo</groupId>
<artifactId>pf4j-demo-parent</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>pf4j-demo-api</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Demo Api</name>


+ 2
- 2
demo/app/pom.xml View File

@@ -4,12 +4,12 @@
<parent>
<groupId>ro.fortsoft.pf4j.demo</groupId>
<artifactId>pf4j-demo-parent</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>pf4j-demo-app</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Demo App</name>


+ 2
- 2
demo/plugins/plugin1/pom.xml View File

@@ -4,12 +4,12 @@
<parent>
<groupId>ro.fortsoft.pf4j.demo</groupId>
<artifactId>pf4j-demo-plugins</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>pf4j-demo-plugin1</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Demo Plugin #1</name>


+ 2
- 2
demo/plugins/plugin2/pom.xml View File

@@ -4,12 +4,12 @@
<parent>
<groupId>ro.fortsoft.pf4j.demo</groupId>
<artifactId>pf4j-demo-plugins</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>pf4j-demo-plugin2</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Demo Plugin #2</name>


+ 2
- 2
demo/plugins/pom.xml View File

@@ -4,13 +4,13 @@
<parent>
<groupId>ro.fortsoft.pf4j.demo</groupId>
<artifactId>pf4j-demo-parent</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>ro.fortsoft.pf4j.demo</groupId>
<artifactId>pf4j-demo-plugins</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Demo Plugins Parent</name>


+ 2
- 2
demo/pom.xml View File

@@ -4,13 +4,13 @@
<parent>
<groupId>ro.fortsoft.pf4j</groupId>
<artifactId>pf4j-parent</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>ro.fortsoft.pf4j.demo</groupId>
<artifactId>pf4j-demo-parent</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Demo Parent</name>


+ 2
- 2
pf4j/pom.xml View File

@@ -4,12 +4,12 @@
<parent>
<groupId>ro.fortsoft.pf4j</groupId>
<artifactId>pf4j-parent</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>pf4j</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>PF4J</name>
<description>Plugin Framework for Java</description>

+ 1
- 1
pom.xml View File

@@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ro.fortsoft.pf4j</groupId>
<artifactId>pf4j-parent</artifactId>
<version>0.7-SNAPSHOT</version>
<version>0.7.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>PF4J Parent</name>
<description>Plugin Framework for Java</description>

Loading…
Cancel
Save