Skip to content

Commit bf0198b

Browse files
author
Arun Gupta
committed
Moving json/twitter-search to extra/twitter-search
1 parent 43f34d7 commit bf0198b

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

extra/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
<packaging>pom</packaging>
1515
<name>Java EE 7 Extra Samples</name>
1616

17-
<modules>
18-
<module>quartz</module>
19-
</modules>
17+
<modules>
18+
<module>quartz</module>
19+
<module>twitter-search</module>
20+
</modules>
2021
</project>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
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>
44
<parent>
5-
<groupId>org.javaee7.json</groupId>
6-
<artifactId>json-samples</artifactId>
5+
<groupId>org.javaee7.extra</groupId>
6+
<artifactId>extra-samples</artifactId>
77
<version>1.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

11-
<groupId>org.javaee7.json</groupId>
11+
<groupId>org.javaee7.extra</groupId>
1212
<artifactId>twitter-search</artifactId>
1313
<version>1.0-SNAPSHOT</version>
1414
<packaging>war</packaging>

json/twitter-search/src/main/java/org/javaee7/json/twitter/search/TestServlet.java renamed to extra/twitter-search/src/main/java/org/javaee7/extra/twitter/search/TestServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40-
package org.javaee7.json.twitter.search;
40+
package org.javaee7.extra.twitter.search;
4141

4242
import java.io.IOException;
4343
import java.io.PrintWriter;

json/twitter-search/src/main/java/org/javaee7/json/twitter/search/TwitterSearch.java renamed to extra/twitter-search/src/main/java/org/javaee7/extra/twitter/search/TwitterSearch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40-
package org.javaee7.json.twitter.search;
40+
package org.javaee7.extra.twitter.search;
4141

4242
import javax.inject.Inject;
4343
import org.glassfish.samples.twitter.api.SearchResults;

json/twitter-search/src/main/webapp/WEB-INF/beans.xml renamed to extra/twitter-search/src/main/webapp/WEB-INF/beans.xml

File renamed without changes.
File renamed without changes.

json/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<module>object-reader</module>
2020
<module>streaming-generate</module>
2121
<module>streaming-parser</module>
22-
<module>twitter-search</module>
2322
</modules>
2423

2524
</project>

0 commit comments

Comments
 (0)