Skip to content
This repository was archived by the owner on Nov 17, 2021. It is now read-only.

Commit 22414b5

Browse files
author
Thomas Diesler
committed
[resolves #132] Invalid module definition for org.eclipse.aether
1 parent 198659d commit 22414b5

File tree

14 files changed

+34
-34
lines changed

14 files changed

+34
-34
lines changed

distro/standalone/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<name>Fuse Patch :: Distro :: Standalone</name>
3030

31-
<artifactId>fuse-patch-standalone</artifactId>
31+
<artifactId>fuse-patch-distro-standalone</artifactId>
3232
<packaging>pom</packaging>
3333

3434
<!-- Properties -->
@@ -47,7 +47,7 @@
4747
</dependency>
4848
<dependency>
4949
<groupId>org.wildfly.extras.patch</groupId>
50-
<artifactId>fuse-patch-wildfly</artifactId>
50+
<artifactId>fuse-patch-distro-wildfly</artifactId>
5151
<version>${project.version}</version>
5252
<scope>provided</scope>
5353
<type>zip</type>
@@ -103,7 +103,7 @@
103103
<configuration>
104104
<executable>${fusepatch.home}/bin/fusepatch.${fusepatch.ext}</executable>
105105
<arguments>
106-
<argument>--add=file:${fusepatch.home}/repository/fuse-patch-wildfly-${project.version}.zip</argument>
106+
<argument>--add=file:${fusepatch.home}/repository/fuse-patch-distro-wildfly-${project.version}.zip</argument>
107107
</arguments>
108108
</configuration>
109109
</execution>

distro/standalone/scripts/assembly-directory.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<outputDirectory>lib</outputDirectory>
3333
<useStrictFiltering>true</useStrictFiltering>
3434
<excludes>
35-
<exclude>*:fuse-patch-wildfly</exclude>
35+
<exclude>*:fuse-patch-distro-wildfly</exclude>
3636
</excludes>
3737
<scope>provided</scope>
3838
<unpack>false</unpack>
@@ -41,7 +41,7 @@
4141
<outputDirectory>repository</outputDirectory>
4242
<useStrictFiltering>true</useStrictFiltering>
4343
<includes>
44-
<include>*:fuse-patch-wildfly</include>
44+
<include>*:fuse-patch-distro-wildfly</include>
4545
</includes>
4646
<scope>provided</scope>
4747
<unpack>false</unpack>

distro/wildfly/etc/wildfly/modules/system/layers/fuse/org/eclipse/aether/main/module.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
</properties>
2727

2828
<resources>
29-
<resource-root path="aether-api.jar"/>
30-
<resource-root path="aether-impl.jar"/>
31-
<resource-root path="aether-connector-basic.jar"/>
32-
<resource-root path="aether-transport-file.jar"/>
33-
<resource-root path="aether-transport-http.jar"/>
34-
<resource-root path="maven-aether-provider.jar"/>
29+
<resource-root path="aether-api-${version.eclipse.aether}.jar"/>
30+
<resource-root path="aether-impl-${version.eclipse.aether}.jar"/>
31+
<resource-root path="aether-connector-basic-${version.eclipse.aether}.jar"/>
32+
<resource-root path="aether-transport-file-${version.eclipse.aether}.jar"/>
33+
<resource-root path="aether-transport-http-${version.eclipse.aether}.jar"/>
34+
<resource-root path="maven-aether-provider-${version.apache.maven}.jar"/>
3535
</resources>
3636

3737
<dependencies>

distro/wildfly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<name>Fuse Patch :: Distro :: WildFly</name>
3030

31-
<artifactId>fuse-patch-wildfly</artifactId>
31+
<artifactId>fuse-patch-distro-wildfly</artifactId>
3232
<packaging>pom</packaging>
3333

3434
<dependencies>

distro/wildfly/scripts/assembly-artifacts.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@
8181
</fileSet>
8282
<fileSet>
8383
<outputDirectory>/</outputDirectory>
84-
<directory>../../feature-pack/src/main/resources/content</directory>
84+
<directory>../../features/core/src/main/resources/content</directory>
8585
<excludes>
8686
<exclude>bin/*.bat</exclude>
8787
<exclude>bin/*.sh</exclude>
8888
</excludes>
8989
</fileSet>
9090
<fileSet>
9191
<outputDirectory>/</outputDirectory>
92-
<directory>../../feature-pack/src/main/resources/content</directory>
92+
<directory>../../features/core/src/main/resources/content</directory>
9393
<includes>
9494
<include>bin/*.bat</include>
9595
<include>bin/*.sh</include>

docs/UserGuide.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The standalone distribution already contains the fuse-patch wildfly patch.
5353

5454
```
5555
$ bin/fusepatch.sh --query-repository
56-
fuse-patch-wildfly-2.0.0
56+
fuse-patch-distro-wildfly-2.0.0
5757
```
5858

5959
### Client Configuration
@@ -75,8 +75,8 @@ The webservice enpoint is expected to be hosted on an application server, which
7575
Lets assume we work with WildFly and want to use fusepatch with WildFly.
7676

7777
```
78-
$ bin/fusepatch.sh --server ../wildfly-8.2.0.Final --update fuse-patch-wildfly
79-
Installed fuse-patch-wildfly-2.0.0
78+
$ bin/fusepatch.sh --server ../wildfly-8.2.0.Final --update fuse-patch-distro-wildfly
79+
Installed fuse-patch-distro-wildfly-2.0.0
8080
```
8181

8282
Note, that the above uses `--update` instead of `--install`, which installs the latest available patch for a given name.
@@ -86,18 +86,18 @@ Now we can switch to WildFly and query the server for installed patches
8686
```
8787
$ cd ../wildfly-8.2.0.Final
8888
$ bin/fusepatch.sh --query-server
89-
fuse-patch-wildfly-2.0.0
89+
fuse-patch-distro-wildfly-2.0.0
9090
```
9191

9292
or managed paths
9393

9494
```
9595
$ cd ../wildfly-8.2.0.Final
9696
$ bin/fusepatch.sh --query-server-paths modules
97-
modules/layers.conf [fuse-patch-wildfly-2.0.0]
98-
modules/system/layers/fuse/org/wildfly/extras/patch/main/args4j-2.0.31.jar [fuse-patch-wildfly-2.0.0]
99-
modules/system/layers/fuse/org/wildfly/extras/patch/main/fuse-patch-core-1.4.1-SNAPSHOT.jar [fuse-patch-wildfly-2.0.0]
100-
modules/system/layers/fuse/org/wildfly/extras/patch/main/module.xml [fuse-patch-wildfly-2.0.0]
97+
modules/layers.conf [fuse-patch-distro-wildfly-2.0.0]
98+
modules/system/layers/fuse/org/wildfly/extras/patch/main/args4j-2.0.31.jar [fuse-patch-distro-wildfly-2.0.0]
99+
modules/system/layers/fuse/org/wildfly/extras/patch/main/fuse-patch-core-1.4.1-SNAPSHOT.jar [fuse-patch-distro-wildfly-2.0.0]
100+
modules/system/layers/fuse/org/wildfly/extras/patch/main/module.xml [fuse-patch-distro-wildfly-2.0.0]
101101
```
102102

103103
### Loading the Repository

features/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</dependency>
4141
<dependency>
4242
<groupId>org.wildfly.extras.patch</groupId>
43-
<artifactId>fuse-patch-wildfly</artifactId>
43+
<artifactId>fuse-patch-distro-wildfly</artifactId>
4444
<version>${project.version}</version>
4545
<type>zip</type>
4646
<exclusions>

features/core/scripts/feature-pack-build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</config>
3333

3434
<copy-artifacts>
35-
<copy-artifact artifact="org.wildfly.extras.patch:fuse-patch-wildfly" to-location="fusepatch/repository/"/>
35+
<copy-artifact artifact="org.wildfly.extras.patch:fuse-patch-distro-wildfly" to-location="fusepatch/repository/"/>
3636
</copy-artifacts>
3737

3838
<file-permissions>

features/full/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</dependency>
4141
<dependency>
4242
<groupId>org.wildfly.extras.patch</groupId>
43-
<artifactId>fuse-patch-wildfly</artifactId>
43+
<artifactId>fuse-patch-distro-wildfly</artifactId>
4444
<version>${project.version}</version>
4545
<type>zip</type>
4646
<exclusions>

features/full/scripts/feature-pack-build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</config>
3333

3434
<copy-artifacts>
35-
<copy-artifact artifact="org.wildfly.extras.patch:fuse-patch-wildfly" to-location="fusepatch/repository/"/>
35+
<copy-artifact artifact="org.wildfly.extras.patch:fuse-patch-distro-wildfly" to-location="fusepatch/repository/"/>
3636
</copy-artifacts>
3737

3838
<file-permissions>

0 commit comments

Comments
 (0)