Skip to content

Commit c929944

Browse files
Extract folder housekeeping
Proper naming - as in the main project Ignoreing a test that probably never worked
1 parent f514f55 commit c929944

File tree

17 files changed

+65
-44
lines changed

17 files changed

+65
-44
lines changed

extra/camel/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<artifactId>camel</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15+
<name>Java EE 7 Samples: extras - camel</name>
1516

1617
<properties>
1718
<camel.version>2.13.0</camel.version>

extra/nosql/cassandra/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<artifactId>cassandra</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15-
15+
<name>Java EE 7 Samples: extras - nosql: cassandra</name>
16+
1617
<dependencies>
1718
<dependency>
1819
<groupId>com.datastax.cassandra</groupId>

extra/nosql/couchbase/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<artifactId>couchbase</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15-
15+
<name>Java EE 7 Samples: extras - nosql: couchbase</name>
16+
1617
<dependencies>
1718
<dependency>
1819
<groupId>com.couchbase.client</groupId>

extra/nosql/hbase/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<artifactId>hbase</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15-
15+
<name>Java EE 7 Samples: extras - nosql: hbase</name>
16+
1617
<dependencies>
1718
<dependency>
1819
<groupId>org.apache.hadoop</groupId>

extra/nosql/hibernate-ogm/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>hibernate-ogm</artifactId>
13+
<name>Java EE 7 Samples: extras - nosql: hibernate-ogm</name>
1314

1415
</project>

extra/nosql/hibernate-ogm/src/test/java/org/javaee7/extra/nosql/hibernateogm/EhcacheTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
import org.jboss.arquillian.container.test.api.Deployment;
55
import org.jboss.arquillian.junit.Arquillian;
66
import org.jboss.shrinkwrap.api.spec.WebArchive;
7+
import org.junit.Ignore;
78
import org.junit.runner.RunWith;
89

910
/**
1011
* @author Guillaume Scheibel <guillaume.scheibel@gmail.com>
1112
*/
1213
@RunWith(Arquillian.class)
14+
@Ignore("This test is probably a sad panda; never been successful sad panda.")
1315
public class EhcacheTest extends AbstractOgmTest {
1416

1517
@Deployment

extra/nosql/mongo/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<artifactId>mongo</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15+
<name>Java EE 7 Samples: extras - nosql: mongo</name>
1516

1617
<dependencies>
1718
<dependency>

extra/nosql/neo4j/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<artifactId>neo4j</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15-
15+
<name>Java EE 7 Samples: extras - nosql: neo4j</name>
16+
1617
<dependencies>
1718
<dependency>
1819
<groupId>org.neo4j</groupId>

extra/nosql/oracle/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<artifactId>oracle</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15-
15+
<name>Java EE 7 Samples: extras - nosql: oracle</name>
16+
1617
<dependencies>
1718
<dependency>
1819
<groupId>com.oracle.nosql</groupId>

extra/nosql/pom.xml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
3-
<modelVersion>4.0.0</modelVersion>
4-
<parent>
5-
<groupId>org.javaee7.extra</groupId>
6-
<artifactId>extra-samples</artifactId>
7-
<version>1.0-SNAPSHOT</version>
8-
<relativePath>../pom.xml</relativePath>
9-
</parent>
10-
11-
<groupId>org.javaee7.extra.nosql</groupId>
12-
<artifactId>extra-nosql-samples</artifactId>
13-
<version>1.0-SNAPSHOT</version>
14-
<packaging>pom</packaging>
15-
<name>Java EE 7 Extra NoSQL Samples</name>
16-
17-
<modules>
18-
<module>mongo</module>
19-
<module>couchbase</module>
20-
<module>redis</module>
21-
<module>cassandra</module>
22-
<module>neo4j</module>
23-
<module>hbase</module>
24-
<module>voldemort</module>
25-
<module>riak</module>
26-
<module>hibernate-ogm</module>
27-
<!--
28-
<module>oracle</module>
29-
-->
30-
</modules>
31-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>org.javaee7.extra</groupId>
6+
<artifactId>extra-samples</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<relativePath>../pom.xml</relativePath>
9+
</parent>
10+
11+
<groupId>org.javaee7.extra.nosql</groupId>
12+
<artifactId>extra-nosql-samples</artifactId>
13+
<version>1.0-SNAPSHOT</version>
14+
<packaging>pom</packaging>
15+
<name>Java EE 7 Samples: extras - nosql</name>
16+
17+
<modules>
18+
<module>mongo</module>
19+
<module>couchbase</module>
20+
<module>redis</module>
21+
<module>cassandra</module>
22+
<module>neo4j</module>
23+
<module>hbase</module>
24+
<module>voldemort</module>
25+
<module>riak</module>
26+
<module>hibernate-ogm</module>
27+
<!--
28+
<module>oracle</module>
29+
-->
30+
</modules>
31+
</project>

extra/nosql/redis/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<artifactId>redis</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15-
15+
<name>Java EE 7 Samples: extras - nosql: redis</name>
16+
1617
<dependencies>
1718
<dependency>
1819
<groupId>redis.clients</groupId>

extra/nosql/riak/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<artifactId>riak</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15+
<name>Java EE 7 Samples: extras - nosql: riak</name>
1516

1617
<repositories>
1718
<repository>

extra/nosql/voldemort/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<artifactId>voldemort</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15+
<name>Java EE 7 Samples: extras - nosql: voldemort</name>
1516

1617
<repositories>
1718
<repository>

extra/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
45
<parent>
56
<groupId>org.javaee7</groupId>
6-
<artifactId>javaee7-samples</artifactId>
7+
<artifactId>samples-parent</artifactId>
78
<version>1.0-SNAPSHOT</version>
89
<relativePath>../pom.xml</relativePath>
910
</parent>
1011

1112
<groupId>org.javaee7.extra</groupId>
1213
<artifactId>extra-samples</artifactId>
13-
<version>1.0-SNAPSHOT</version>
1414
<packaging>pom</packaging>
15-
<name>Java EE 7 Extra Samples</name>
15+
<name>Java EE 7 Samples: extras</name>
1616

1717
<modules>
18+
<module>camel</module>
19+
<module>nosql</module>
1820
<module>quartz</module>
19-
<!--
2021
<module>twitter-search</module>
21-
-->
22-
<module>nosql</module>
22+
<module>webjars</module>
2323
</modules>
2424
<dependencies>
2525
<dependency>

extra/quartz/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<artifactId>quartz</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15-
15+
<name>Java EE 7 Samples: extras - quartz</name>
16+
1617
<dependencies>
1718
<dependency>
1819
<groupId>org.quartz-scheduler</groupId>

extra/twitter-search/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@
1212
<artifactId>twitter-search</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>
15+
<name>Java EE 7 Samples: extras - twitter-search</name>
1516

1617
<dependencies>
18+
<!--
19+
Non Maven dependency: https://github.com/arun-gupta/twitter-api
20+
-->
1721
<dependency>
1822
<groupId>org.glassfish.samples</groupId>
1923
<artifactId>twitter-api</artifactId>
2024
<version>1.0-SNAPSHOT</version>
25+
<scope>system</scope>
26+
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/twitter.jar</systemPath>
2127
</dependency>
2228
<dependency>
2329
<groupId>com.sun.jersey.contribs.jersey-oauth</groupId>

extra/webjars/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<groupId>org.javaee7.extra</groupId>
1515
<artifactId>webjars</artifactId>
1616
<version>1.0-SNAPSHOT</version>
17+
<name>Java EE 7 Samples: extras - webjars</name>
1718

1819
<packaging>war</packaging>
1920

0 commit comments

Comments
 (0)