Skip to content

Commit

Permalink
Rename as-support module back to wildfly.
Browse files Browse the repository at this point in the history
Changing the name from wildfly to as-support needlessly breaks existing
releases of lein-immutant and fntest.
  • Loading branch information
tobias committed Jul 30, 2015
1 parent b2a1ee1 commit 419d339
Show file tree
Hide file tree
Showing 29 changed files with 18 additions and 93 deletions.
85 changes: 0 additions & 85 deletions modules/as-support/pom.xml

This file was deleted.

2 changes: 1 addition & 1 deletion modules/pom.xml
Expand Up @@ -24,7 +24,7 @@
<module>web</module>
<module>web-undertow</module>
<module>transactions</module>
<module>as-support</module>
<module>wildfly</module>

<module>ruby</module>
<module>clojure</module>
Expand Down
24 changes: 17 additions & 7 deletions modules/wildfly/pom.xml
Expand Up @@ -11,12 +11,15 @@

<groupId>org.projectodd.wunderboss</groupId>
<artifactId>wunderboss-wildfly</artifactId>
<name>WunderBoss WildFly Module</name>
<name>WunderBoss WildFly/EAP Module</name>

<packaging>jar</packaging>

<properties>
<version.jboss.modules>1.3.6.Final</version.jboss.modules>
<version.wildfly>8.2.0.Final</version.wildfly>
<version.jgroups>3.2.13.Final</version.jgroups> <!-- the version used by EAP 6.4 -->
<version.jboss-msc>1.1.5.Final</version.jboss-msc> <!-- the version used by EAP 6.4 -->
</properties>

<dependencies>
Expand All @@ -27,11 +30,18 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectodd.wunderboss</groupId>
<artifactId>wunderboss-as-support</artifactId>
<version>${project.version}</version>
<groupId>org.jgroups</groupId>
<artifactId>jgroups</artifactId>
<version>${version.jgroups}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.msc</groupId>
<artifactId>jboss-msc</artifactId>
<version>${version.jboss-msc}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.projectodd.wunderboss</groupId>
<artifactId>wunderboss-messaging-hornetq</artifactId>
Expand All @@ -58,9 +68,9 @@
</dependency>

<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-undertow</artifactId>
<version>${version.wildfly}</version>
<groupId>org.jboss.modules</groupId>
<artifactId>jboss-modules</artifactId>
<version>${version.jboss.modules}</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit 419d339

Please sign in to comment.