Skip to content

Commit

Permalink
HAWKULAR-762 - Moved nest to the main Hawkular repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkrohling committed Oct 30, 2015
1 parent 5193908 commit 63cf3eb
Show file tree
Hide file tree
Showing 41 changed files with 38 additions and 3,211 deletions.
79 changes: 0 additions & 79 deletions cassandra-driver-wf-module/pom.xml

This file was deleted.

This file was deleted.

57 changes: 0 additions & 57 deletions cassandra-driver-wf-module/src/main/scripts/module-assembly.xml

This file was deleted.

22 changes: 19 additions & 3 deletions hawkular-bus-samples/hawkular-bus-sample-mdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,22 @@
<id>dev</id>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-nest</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/nest/</outputDirectory>
<includeArtifactIds>hawkular-nest-distro</includeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
Expand All @@ -99,9 +115,9 @@
<id>deploy</id>
<phase>install</phase>
<configuration>
<target>
<property name="org.hawkular.wildfly.home" value="${basedir}/../../../hawkular-bus/hawkular-nest/hawkular-nest-distro/target/wildfly-${version.org.wildfly}" />
<property name="org.hawkular.wildfly.deployments" value="modules/system/layers/base/org/hawkular/nest/main/deployments" />
<target> <!-- You need to adapt them to your purposes! -->
<property name="org.hawkular.wildfly.home" value="${project.build.directory}/nest/wildfly-${version.org.wildfly}" />
<property name="org.hawkular.wildfly.deployments" value="modules/org/hawkular/nest/main/deployments" />
<copy file="${project.build.directory}/${project.build.finalName}.war" todir="${org.hawkular.wildfly.home}/${org.hawkular.wildfly.deployments}" />
</target>
</configuration>
Expand Down
23 changes: 19 additions & 4 deletions hawkular-bus-samples/hawkular-bus-sample-virtual-topic-mdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,29 @@
<artifactId>jboss-servlet-api_3.1_spec</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<profiles>
<profile>
<id>dev</id>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-nest</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/nest/</outputDirectory>
<includeArtifactIds>hawkular-nest-distro</includeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
Expand All @@ -99,9 +114,9 @@
<id>deploy</id>
<phase>install</phase>
<configuration>
<target>
<property name="org.hawkular.wildfly.home" value="${basedir}/../../../hawkular-bus/hawkular-nest/hawkular-nest-distro/target/wildfly-${version.org.wildfly}" />
<property name="org.hawkular.wildfly.deployments" value="modules/system/layers/base/org/hawkular/nest/main/deployments" />
<target> <!-- You need to adapt them to your purposes! -->
<property name="org.hawkular.wildfly.home" value="${project.build.directory}/nest/wildfly-${version.org.wildfly}" />
<property name="org.hawkular.wildfly.deployments" value="modules/org/hawkular/nest/main/deployments" />
<copy file="${project.build.directory}/${project.build.finalName}.war" todir="${org.hawkular.wildfly.home}/${org.hawkular.wildfly.deployments}" />
</target>
</configuration>
Expand Down
17 changes: 0 additions & 17 deletions hawkular-nest/.gitignore

This file was deleted.

0 comments on commit 63cf3eb

Please sign in to comment.