diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2017-09-20 16:55:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-20 16:55:30 +0200 |
commit | 5916ee64d9c05a4f085f6f6562ed383ff3203e4a (patch) | |
tree | 0255541afe778984d2becf450ecbb90d97e595d7 /demo/api | |
parent | b8cd3af90f8149e5003ea1db395d67b0fa8f7066 (diff) | |
download | pf4j-5916ee64d9c05a4f085f6f6562ed383ff3203e4a.tar.gz pf4j-5916ee64d9c05a4f085f6f6562ed383ff3203e4a.zip |
Change root package from ro.fortsoft.pf4j to org.pf4j (#168)
Diffstat (limited to 'demo/api')
-rw-r--r-- | demo/api/pom.xml | 4 | ||||
-rw-r--r-- | demo/api/src/main/java/org/pf4j/demo/api/Greeting.java (renamed from demo/api/src/main/java/ro/fortsoft/pf4j/demo/api/Greeting.java) | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/demo/api/pom.xml b/demo/api/pom.xml index a031848..11f4cad 100644 --- a/demo/api/pom.xml +++ b/demo/api/pom.xml @@ -2,7 +2,7 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> - <groupId>ro.fortsoft.pf4j.demo</groupId> + <groupId>org.pf4j.demo</groupId> <artifactId>pf4j-demo-parent</artifactId> <version>1.4.0-SNAPSHOT</version> </parent> @@ -26,7 +26,7 @@ <dependencies> <dependency> - <groupId>ro.fortsoft.pf4j</groupId> + <groupId>org.pf4j</groupId> <artifactId>pf4j</artifactId> <version>${project.version}</version> <!-- !!! VERY IMPORTANT --> diff --git a/demo/api/src/main/java/ro/fortsoft/pf4j/demo/api/Greeting.java b/demo/api/src/main/java/org/pf4j/demo/api/Greeting.java index bdf2fd4..1e4a767 100644 --- a/demo/api/src/main/java/ro/fortsoft/pf4j/demo/api/Greeting.java +++ b/demo/api/src/main/java/org/pf4j/demo/api/Greeting.java @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package ro.fortsoft.pf4j.demo.api; +package org.pf4j.demo.api; -import ro.fortsoft.pf4j.ExtensionPoint; +import org.pf4j.ExtensionPoint; /** * @author Decebal Suiu |