Updated Branches: refs/heads/develop 6f23021eb -> 2e783e798
fixed jrebel configuration Project: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/commit/2e783e79 Tree: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/tree/2e783e79 Diff: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/diff/2e783e79 Branch: refs/heads/develop Commit: 2e783e7984b92003b25ad138abef196562ca5c92 Parents: 6f23021 Author: Sebastian Schaffert <[email protected]> Authored: Fri May 17 15:10:25 2013 +0200 Committer: Sebastian Schaffert <[email protected]> Committed: Fri May 17 15:10:25 2013 +0200 ---------------------------------------------------------------------- libraries/kiwi/pom.xml | 13 ++++++- libraries/ldcache/ldcache-api/pom.xml | 24 ++++++++++++ libraries/ldcache/ldcache-backend-ehcache/pom.xml | 24 ++++++++++++ libraries/ldcache/ldcache-backend-file/pom.xml | 23 +++++++++++- libraries/ldcache/ldcache-backend-kiwi/pom.xml | 21 +++++++++++ libraries/ldcache/ldcache-core/pom.xml | 21 +++++++++++ libraries/ldcache/ldcache-sail-generic/pom.xml | 24 ++++++++++++ libraries/ldcache/ldcache-sail-kiwi/pom.xml | 21 +++++++++++ libraries/ldclient/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-api/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-backend-file/pom.xml | 24 ++++++++++++ libraries/ldpath/ldpath-backend-jena/pom.xml | 24 ++++++++++++ libraries/ldpath/ldpath-backend-linkeddata/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-backend-sesame/pom.xml | 24 ++++++++++++ libraries/ldpath/ldpath-core/pom.xml | 21 +++++++++++ .../ldpath/ldpath-functions-collections/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-functions-date/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-functions-html/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-functions-math/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-functions-text/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-functions-xml/pom.xml | 21 +++++++++++ .../ldpath/ldpath-template-linkeddata/pom.xml | 21 +++++++++++ libraries/ldpath/ldpath-template/pom.xml | 21 +++++++++++ parent/pom.xml | 2 +- platform/marmotta-core/pom.xml | 28 ++++++++++++++ platform/marmotta-ldcache/pom.xml | 28 ++++++++++++++ platform/marmotta-ldpath/pom.xml | 28 ++++++++++++++ platform/marmotta-reasoner/pom.xml | 28 ++++++++++++++ platform/marmotta-security/pom.xml | 28 ++++++++++++++ platform/marmotta-sparql/pom.xml | 29 +++++++++++++++ platform/marmotta-user/pom.xml | 28 ++++++++++++++ platform/marmotta-versioning/pom.xml | 28 ++++++++++++++ 32 files changed, 718 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/kiwi/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/kiwi/pom.xml b/libraries/kiwi/pom.xml index 6ef36c8..ade2610 100644 --- a/libraries/kiwi/pom.xml +++ b/libraries/kiwi/pom.xml @@ -88,10 +88,21 @@ <plugin> <!-- generate JRebel Configuration --> <groupId>org.zeroturnaround</groupId> <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> <configuration> - <relativePath>../../</relativePath> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> </configuration> </plugin> + </plugins> </pluginManagement> <plugins> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldcache/ldcache-api/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldcache/ldcache-api/pom.xml b/libraries/ldcache/ldcache-api/pom.xml index 8462669..5cc7128 100644 --- a/libraries/ldcache/ldcache-api/pom.xml +++ b/libraries/ldcache/ldcache-api/pom.xml @@ -32,6 +32,30 @@ Interfaces and Data Model for the Linked Data Caching component. </description> + <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <dependencies> <dependency> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldcache/ldcache-backend-ehcache/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldcache/ldcache-backend-ehcache/pom.xml b/libraries/ldcache/ldcache-backend-ehcache/pom.xml index 86a9d92..f4db276 100644 --- a/libraries/ldcache/ldcache-backend-ehcache/pom.xml +++ b/libraries/ldcache/ldcache-backend-ehcache/pom.xml @@ -34,6 +34,30 @@ </description> + <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <dependencies> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldcache/ldcache-backend-file/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldcache/ldcache-backend-file/pom.xml b/libraries/ldcache/ldcache-backend-file/pom.xml index c7d567b..b613fb8 100644 --- a/libraries/ldcache/ldcache-backend-file/pom.xml +++ b/libraries/ldcache/ldcache-backend-file/pom.xml @@ -34,8 +34,27 @@ <build> - <plugins> - </plugins> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldcache/ldcache-backend-kiwi/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldcache/ldcache-backend-kiwi/pom.xml b/libraries/ldcache/ldcache-backend-kiwi/pom.xml index 356eacd..1351f1a 100644 --- a/libraries/ldcache/ldcache-backend-kiwi/pom.xml +++ b/libraries/ldcache/ldcache-backend-kiwi/pom.xml @@ -34,6 +34,27 @@ </description> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldcache/ldcache-core/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldcache/ldcache-core/pom.xml b/libraries/ldcache/ldcache-core/pom.xml index 801f422..e02679f 100644 --- a/libraries/ldcache/ldcache-core/pom.xml +++ b/libraries/ldcache/ldcache-core/pom.xml @@ -29,6 +29,27 @@ <name>LDCache: Core Library</name> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldcache/ldcache-sail-generic/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldcache/ldcache-sail-generic/pom.xml b/libraries/ldcache/ldcache-sail-generic/pom.xml index 6e72dbd..6556e5b 100644 --- a/libraries/ldcache/ldcache-sail-generic/pom.xml +++ b/libraries/ldcache/ldcache-sail-generic/pom.xml @@ -33,6 +33,30 @@ on demand when needed. Can be wrapped around other Sesame SAILs. </description> + <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <dependencies> <dependency> <groupId>org.openrdf.sesame</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldcache/ldcache-sail-kiwi/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldcache/ldcache-sail-kiwi/pom.xml b/libraries/ldcache/ldcache-sail-kiwi/pom.xml index 6a875af..30b2441 100644 --- a/libraries/ldcache/ldcache-sail-kiwi/pom.xml +++ b/libraries/ldcache/ldcache-sail-kiwi/pom.xml @@ -35,6 +35,27 @@ <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldclient/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldclient/pom.xml b/libraries/ldclient/pom.xml index ad88ca4..a35912e 100644 --- a/libraries/ldclient/pom.xml +++ b/libraries/ldclient/pom.xml @@ -35,6 +35,27 @@ <!-- release management --> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <!-- do not install / deploy reactor --> <plugin> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-api/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-api/pom.xml b/libraries/ldpath/ldpath-api/pom.xml index 174121e..faacf31 100644 --- a/libraries/ldpath/ldpath-api/pom.xml +++ b/libraries/ldpath/ldpath-api/pom.xml @@ -31,6 +31,27 @@ <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-backend-file/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-backend-file/pom.xml b/libraries/ldpath/ldpath-backend-file/pom.xml index 0e5cdd7..a8ebdae 100644 --- a/libraries/ldpath/ldpath-backend-file/pom.xml +++ b/libraries/ldpath/ldpath-backend-file/pom.xml @@ -29,6 +29,30 @@ <artifactId>ldpath-backend-file</artifactId> <packaging>jar</packaging> + <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <dependencies> <dependency> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-backend-jena/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-backend-jena/pom.xml b/libraries/ldpath/ldpath-backend-jena/pom.xml index d0a3062..30028ce 100644 --- a/libraries/ldpath/ldpath-backend-jena/pom.xml +++ b/libraries/ldpath/ldpath-backend-jena/pom.xml @@ -29,6 +29,30 @@ <artifactId>ldpath-backend-jena</artifactId> <packaging>jar</packaging> + <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <dependencies> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-backend-linkeddata/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-backend-linkeddata/pom.xml b/libraries/ldpath/ldpath-backend-linkeddata/pom.xml index 9c27f08..030d560 100644 --- a/libraries/ldpath/ldpath-backend-linkeddata/pom.xml +++ b/libraries/ldpath/ldpath-backend-linkeddata/pom.xml @@ -30,6 +30,27 @@ <packaging>jar</packaging> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.jasig.maven</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-backend-sesame/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-backend-sesame/pom.xml b/libraries/ldpath/ldpath-backend-sesame/pom.xml index 4299c3a..b500bc4 100644 --- a/libraries/ldpath/ldpath-backend-sesame/pom.xml +++ b/libraries/ldpath/ldpath-backend-sesame/pom.xml @@ -29,6 +29,30 @@ <artifactId>ldpath-backend-sesame</artifactId> <packaging>jar</packaging> + <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <dependencies> <dependency> <groupId>org.apache.marmotta</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-core/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-core/pom.xml b/libraries/ldpath/ldpath-core/pom.xml index 289c21d..70738f8 100644 --- a/libraries/ldpath/ldpath-core/pom.xml +++ b/libraries/ldpath/ldpath-core/pom.xml @@ -107,6 +107,27 @@ <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-functions-collections/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-functions-collections/pom.xml b/libraries/ldpath/ldpath-functions-collections/pom.xml index e6ed175..b2f6704 100644 --- a/libraries/ldpath/ldpath-functions-collections/pom.xml +++ b/libraries/ldpath/ldpath-functions-collections/pom.xml @@ -73,6 +73,27 @@ </dependencies> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-functions-date/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-functions-date/pom.xml b/libraries/ldpath/ldpath-functions-date/pom.xml index e990287..dea27be 100644 --- a/libraries/ldpath/ldpath-functions-date/pom.xml +++ b/libraries/ldpath/ldpath-functions-date/pom.xml @@ -69,6 +69,27 @@ </dependency> </dependencies> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-functions-html/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-functions-html/pom.xml b/libraries/ldpath/ldpath-functions-html/pom.xml index fd9fe94..d49d490 100644 --- a/libraries/ldpath/ldpath-functions-html/pom.xml +++ b/libraries/ldpath/ldpath-functions-html/pom.xml @@ -83,6 +83,27 @@ <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-functions-math/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-functions-math/pom.xml b/libraries/ldpath/ldpath-functions-math/pom.xml index 3a8ede8..ae8abfa 100644 --- a/libraries/ldpath/ldpath-functions-math/pom.xml +++ b/libraries/ldpath/ldpath-functions-math/pom.xml @@ -68,6 +68,27 @@ <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-functions-text/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-functions-text/pom.xml b/libraries/ldpath/ldpath-functions-text/pom.xml index b8052fa..0e9612e 100644 --- a/libraries/ldpath/ldpath-functions-text/pom.xml +++ b/libraries/ldpath/ldpath-functions-text/pom.xml @@ -68,6 +68,27 @@ </dependencies> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-functions-xml/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-functions-xml/pom.xml b/libraries/ldpath/ldpath-functions-xml/pom.xml index 3adfd91..0ce6361 100644 --- a/libraries/ldpath/ldpath-functions-xml/pom.xml +++ b/libraries/ldpath/ldpath-functions-xml/pom.xml @@ -84,6 +84,27 @@ <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-template-linkeddata/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-template-linkeddata/pom.xml b/libraries/ldpath/ldpath-template-linkeddata/pom.xml index df42569..818b73e 100644 --- a/libraries/ldpath/ldpath-template-linkeddata/pom.xml +++ b/libraries/ldpath/ldpath-template-linkeddata/pom.xml @@ -31,6 +31,27 @@ <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/libraries/ldpath/ldpath-template/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/ldpath/ldpath-template/pom.xml b/libraries/ldpath/ldpath-template/pom.xml index d7ea7da..a4c680a 100644 --- a/libraries/ldpath/ldpath-template/pom.xml +++ b/libraries/ldpath/ldpath-template/pom.xml @@ -50,6 +50,27 @@ <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 345a209..0c48005 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -345,7 +345,7 @@ </execution> </executions> <configuration> - <relativePath>../</relativePath> + <relativePath>../../</relativePath> <rootPath>$${rebel.root}</rootPath> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/platform/marmotta-core/pom.xml ---------------------------------------------------------------------- diff --git a/platform/marmotta-core/pom.xml b/platform/marmotta-core/pom.xml index f95f33b..0a04e5c 100644 --- a/platform/marmotta-core/pom.xml +++ b/platform/marmotta-core/pom.xml @@ -46,6 +46,34 @@ further details: http://maven.apache.org/guides/mini/guide-attached-tests.html --> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <version>1.1.3</version> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + <classpath> + <resources> + <resource><!-- default resource --></resource> + <resource><directory>src/main/resources</directory></resource> + </resources> + </classpath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/platform/marmotta-ldcache/pom.xml ---------------------------------------------------------------------- diff --git a/platform/marmotta-ldcache/pom.xml b/platform/marmotta-ldcache/pom.xml index da7ab48..b73049a 100644 --- a/platform/marmotta-ldcache/pom.xml +++ b/platform/marmotta-ldcache/pom.xml @@ -36,6 +36,34 @@ </description> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <version>1.1.3</version> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + <classpath> + <resources> + <resource><!-- default resource --></resource> + <resource><directory>src/main/resources</directory></resource> + </resources> + </classpath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.marmotta</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/platform/marmotta-ldpath/pom.xml ---------------------------------------------------------------------- diff --git a/platform/marmotta-ldpath/pom.xml b/platform/marmotta-ldpath/pom.xml index f7fe181..599c0c3 100644 --- a/platform/marmotta-ldpath/pom.xml +++ b/platform/marmotta-ldpath/pom.xml @@ -35,6 +35,34 @@ </description> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <version>1.1.3</version> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + <classpath> + <resources> + <resource><!-- default resource --></resource> + <resource><directory>src/main/resources</directory></resource> + </resources> + </classpath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.marmotta</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/platform/marmotta-reasoner/pom.xml ---------------------------------------------------------------------- diff --git a/platform/marmotta-reasoner/pom.xml b/platform/marmotta-reasoner/pom.xml index fc1d3f6..861a38c 100644 --- a/platform/marmotta-reasoner/pom.xml +++ b/platform/marmotta-reasoner/pom.xml @@ -36,6 +36,34 @@ </description> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <version>1.1.3</version> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + <classpath> + <resources> + <resource><!-- default resource --></resource> + <resource><directory>src/main/resources</directory></resource> + </resources> + </classpath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.marmotta</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/platform/marmotta-security/pom.xml ---------------------------------------------------------------------- diff --git a/platform/marmotta-security/pom.xml b/platform/marmotta-security/pom.xml index 16c4d34..183e65d 100644 --- a/platform/marmotta-security/pom.xml +++ b/platform/marmotta-security/pom.xml @@ -35,6 +35,34 @@ </description> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <version>1.1.3</version> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + <classpath> + <resources> + <resource><!-- default resource --></resource> + <resource><directory>src/main/resources</directory></resource> + </resources> + </classpath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.marmotta</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/platform/marmotta-sparql/pom.xml ---------------------------------------------------------------------- diff --git a/platform/marmotta-sparql/pom.xml b/platform/marmotta-sparql/pom.xml index 9374f2c..f8b0406 100644 --- a/platform/marmotta-sparql/pom.xml +++ b/platform/marmotta-sparql/pom.xml @@ -45,6 +45,35 @@ </resource> </resources> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <version>1.1.3</version> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + <classpath> + <resources> + <resource><!-- default resource --></resource> + <resource><directory>src/main/resources</directory></resource> + </resources> + </classpath> + </configuration> + </plugin> + </plugins> + </pluginManagement> + <plugins> <plugin> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/platform/marmotta-user/pom.xml ---------------------------------------------------------------------- diff --git a/platform/marmotta-user/pom.xml b/platform/marmotta-user/pom.xml index c134b26..a6ac0fb 100644 --- a/platform/marmotta-user/pom.xml +++ b/platform/marmotta-user/pom.xml @@ -35,6 +35,34 @@ </description> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <version>1.1.3</version> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + <classpath> + <resources> + <resource><!-- default resource --></resource> + <resource><directory>src/main/resources</directory></resource> + </resources> + </classpath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.marmotta</groupId> http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/2e783e79/platform/marmotta-versioning/pom.xml ---------------------------------------------------------------------- diff --git a/platform/marmotta-versioning/pom.xml b/platform/marmotta-versioning/pom.xml index 0f3bbb1..aa64a16 100644 --- a/platform/marmotta-versioning/pom.xml +++ b/platform/marmotta-versioning/pom.xml @@ -37,6 +37,34 @@ </description> <build> + <pluginManagement> + <plugins> + <plugin> <!-- generate JRebel Configuration --> + <groupId>org.zeroturnaround</groupId> + <artifactId>jrebel-maven-plugin</artifactId> + <version>1.1.3</version> + <executions> + <execution> + <id>generate-rebel-xml</id> + <phase>process-resources</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <relativePath>../../</relativePath> + <rootPath>$${rebel.root}</rootPath> + <classpath> + <resources> + <resource><!-- default resource --></resource> + <resource><directory>src/main/resources</directory></resource> + </resources> + </classpath> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.marmotta</groupId>
