Date: Wed Nov 30 00:51:37 2011
New Revision: 1208160
URL: http://svn.apache.org/viewvc?rev=1208160&view=rev
Log:
Add pojos for twitter posts/searches
Added:
labs/magnet/birdie/
labs/magnet/birdie/pom.xml
labs/magnet/birdie/src/
labs/magnet/birdie/src/main/
labs/magnet/birdie/src/main/java/
labs/magnet/birdie/src/main/java/org/
labs/magnet/birdie/src/main/java/org/apache/
labs/magnet/birdie/src/main/java/org/apache/labs/
labs/magnet/birdie/src/main/java/org/apache/labs/magnet/
labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/
labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Geo.java
labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Metadata.java
labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Search.java
labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Tweet.java
labs/magnet/birdie/src/main/resources/
labs/magnet/birdie/src/main/resources/log4j.properties
labs/magnet/birdie/src/test/
labs/magnet/birdie/src/test/java/
labs/magnet/birdie/src/test/java/org/
labs/magnet/birdie/src/test/java/org/apache/
labs/magnet/birdie/src/test/java/org/apache/labs/
labs/magnet/birdie/src/test/java/org/apache/labs/magnet/
labs/magnet/birdie/src/test/java/org/apache/labs/magnet/twitter/
labs/magnet/birdie/src/test/java/org/apache/labs/magnet/twitter/TwitterPojoTest.java
labs/magnet/birdie/src/test/resources/
Modified:
labs/magnet/magnet/pom.xml
labs/magnet/pom.xml
Added: labs/magnet/birdie/pom.xml
URL: http://svn.apache.org/viewvc/labs/magnet/birdie/pom.xml?rev=1208160&view=auto
==============================================================================
--- labs/magnet/birdie/pom.xml (added)
+++ labs/magnet/birdie/pom.xml Wed Nov 30 00:51:37 2011
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<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/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.labs.magnet</groupId>
+ <artifactId>magnet</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <relativePath>../magnet</relativePath>
+ </parent>
+
+ <groupId>org.apache.labs.magnet</groupId>
+ <artifactId>birdie</artifactId>
+ <packaging>bundle</packaging>
+ <name>Magnet :: Application :: Twitter</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.codehaus.jackson</groupId>
+ <artifactId>jackson-mapper-asl</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+
+ <!-- for testing -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <defaultGoal>install</defaultGoal>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+ <Import-Package>*</Import-Package>
+ <Private-Package>!*</Private-Package>
+ <Export-Package>
+ org.apache.labs.magnet.twitter
+ </Export-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Added: labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Geo.java
URL: http://svn.apache.org/viewvc/labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Geo.java?rev=1208160&view=auto
==============================================================================
--- labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Geo.java (added)
+++ labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Geo.java Wed Nov 30 00:51:37 2011
@@ -0,0 +1,45 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.labs.magnet.twitter;
+
+import java.io.Serializable;
+
+import org.codehaus.jackson.annotate.JsonIgnoreProperties;
+
+@JsonIgnoreProperties(ignoreUnknown = true)
+public class Geo implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ private Double latitude;
+ private Double longitude;
+
+ public Double getLatitude() {
+ return latitude;
+ }
+
+ public void setLatitude(Double latitude) {
+ this.latitude = latitude;
+ }
+
+ public Double getLongitude() {
+ return longitude;
+ }
+
+ public void setLongitude(Double longitude) {
+ this.longitude = longitude;
+ }
+}
Added: labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Metadata.java
URL: http://svn.apache.org/viewvc/labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Metadata.java?rev=1208160&view=auto
==============================================================================
--- labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Metadata.java (added)
+++ labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Metadata.java Wed Nov 30 00:51:37 2011
@@ -0,0 +1,37 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.labs.magnet.twitter;
+
+import java.io.Serializable;
+
+import org.codehaus.jackson.annotate.JsonIgnoreProperties;
+
+@JsonIgnoreProperties(ignoreUnknown = true)
+public class Metadata implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ private String result_type;
+
+ public String getResult_type() {
+ return result_type;
+ }
+
+ public void setResult_type(String result_type) {
+ this.result_type = result_type;
+ }
+}
Added: labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Search.java
URL: http://svn.apache.org/viewvc/labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Search.java?rev=1208160&view=auto
==============================================================================
--- labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Search.java (added)
+++ labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Search.java Wed Nov 30 00:51:37 2011
@@ -0,0 +1,129 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.labs.magnet.twitter;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+import org.codehaus.jackson.annotate.JsonIgnoreProperties;
+
+@JsonIgnoreProperties(ignoreUnknown = true)
+public class Search implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ private Double completed_in;
+ private Long max_id;
+ private String max_id_str;
+ private String next_page;
+ private Integer page;
+ private String query;
+ private String refresh_url;
+ private List<Tweet> results = new ArrayList<Tweet>();
+ private Integer results_per_page = 0;
+ private Long since_id;
+ private String since_id_str;
+
+ public Double getCompleted_in() {
+ return completed_in;
+ }
+
+ public void setCompleted_in(Double completed_in) {
+ this.completed_in = completed_in;
+ }
+
+ public Long getMax_id() {
+ return max_id;
+ }
+
+ public void setMax_id(Long max_id) {
+ this.max_id = max_id;
+ }
+
+ public String getMax_id_str() {
+ return max_id_str;
+ }
+
+ public void setMax_id_str(String max_id_str) {
+ this.max_id_str = max_id_str;
+ }
+
+ public String getNext_page() {
+ return next_page;
+ }
+
+ public void setNext_page(String next_page) {
+ this.next_page = next_page;
+ }
+
+ public Integer getPage() {
+ return page;
+ }
+
+ public void setPage(Integer page) {
+ this.page = page;
+ }
+
+ public String getQuery() {
+ return query;
+ }
+
+ public void setQuery(String query) {
+ this.query = query;
+ }
+
+ public String getRefresh_url() {
+ return refresh_url;
+ }
+
+ public void setRefresh_url(String refresh_url) {
+ this.refresh_url = refresh_url;
+ }
+
+ public List<Tweet> getResults() {
+ return results;
+ }
+
+ public void setResults(List<Tweet> results) {
+ this.results = results;
+ }
+
+ public Integer getResults_per_page() {
+ return results_per_page;
+ }
+
+ public void setResults_per_page(Integer results_per_page) {
+ this.results_per_page = results_per_page;
+ }
+
+ public Long getSince_id() {
+ return since_id;
+ }
+
+ public void setSince_id(Long since_id) {
+ this.since_id = since_id;
+ }
+
+ public String getSince_id_str() {
+ return since_id_str;
+ }
+
+ public void setSince_id_str(String since_id_str) {
+ this.since_id_str = since_id_str;
+ }
+}
Added: labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Tweet.java
URL: http://svn.apache.org/viewvc/labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Tweet.java?rev=1208160&view=auto
==============================================================================
--- labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Tweet.java (added)
+++ labs/magnet/birdie/src/main/java/org/apache/labs/magnet/twitter/Tweet.java Wed Nov 30 00:51:37 2011
@@ -0,0 +1,169 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.labs.magnet.twitter;
+
+import java.io.Serializable;
+import java.util.Date;
+
+import org.codehaus.jackson.annotate.JsonIgnoreProperties;
+
+@JsonIgnoreProperties(ignoreUnknown = true)
+public class Tweet implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ private Date created_at;
+ private String from_user;
+ private Long from_user_id;
+ private String from_user_id_str;
+ private Geo geo;
+ private Long id;
+ private String id_str;
+ private String iso_language_code;
+ private Metadata metadata;
+ private String profile_image_url;
+ private String source;
+ private String text;
+ private String to_user;
+ private Long to_user_id;
+ private String to_user_id_str;
+
+ public Date getCreated_at() {
+ return created_at;
+ }
+
+ public void setCreated_at(Date created_at) {
+ this.created_at = created_at;
+ }
+
+ public String getFrom_user() {
+ return from_user;
+ }
+
+ public void setFrom_user(String from_user) {
+ this.from_user = from_user;
+ }
+
+ public Long getFrom_user_id() {
+ return from_user_id;
+ }
+
+ public void setFrom_user_id(Long from_user_id) {
+ this.from_user_id = from_user_id;
+ }
+
+ public String getFrom_user_id_str() {
+ return from_user_id_str;
+ }
+
+ public void setFrom_user_id_str(String from_user_id_str) {
+ this.from_user_id_str = from_user_id_str;
+ }
+
+ public Geo getGeo() {
+ return geo;
+ }
+
+ public void setGeo(Geo geo) {
+ this.geo = geo;
+ }
+
+ public Long getId() {
+ return id;
+ }
+
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ public String getId_str() {
+ return id_str;
+ }
+
+ public void setId_str(String id_str) {
+ this.id_str = id_str;
+ }
+
+ public String getIso_language_code() {
+ return iso_language_code;
+ }
+
+ public void setIso_language_code(String iso_language_code) {
+ this.iso_language_code = iso_language_code;
+ }
+
+ public Metadata getMetadata() {
+ return metadata;
+ }
+
+ public void setMetadata(Metadata metadata) {
+ this.metadata = metadata;
+ }
+
+ public String getProfile_image_url() {
+ return profile_image_url;
+ }
+
+ public void setProfile_image_url(String profile_image_url) {
+ this.profile_image_url = profile_image_url;
+ }
+
+ public String getSource() {
+ return source;
+ }
+
+ public void setSource(String source) {
+ this.source = source;
+ }
+
+ public String getText() {
+ return text;
+ }
+
+ public void setText(String text) {
+ this.text = text;
+ }
+
+ public String getTo_user() {
+ return to_user;
+ }
+
+ public void setTo_user(String to_user) {
+ this.to_user = to_user;
+ }
+
+ public Long getTo_user_id() {
+ return to_user_id;
+ }
+
+ public void setTo_user_id(Long to_user_id) {
+ this.to_user_id = to_user_id;
+ }
+
+ public String getTo_user_id_str() {
+ return to_user_id_str;
+ }
+
+ public void setTo_user_id_str(String to_user_id_str) {
+ this.to_user_id_str = to_user_id_str;
+ }
+
+ @Override
+ public String toString() {
+ return this.getText();
+ }
+}
Added: labs/magnet/birdie/src/main/resources/log4j.properties
URL: http://svn.apache.org/viewvc/labs/magnet/birdie/src/main/resources/log4j.properties?rev=1208160&view=auto
==============================================================================
--- labs/magnet/birdie/src/main/resources/log4j.properties (added)
+++ labs/magnet/birdie/src/main/resources/log4j.properties Wed Nov 30 00:51:37 2011
@@ -0,0 +1,36 @@
+## ------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements. See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You under the Apache License, Version 2.0
+## (the "License"); you may not use this file except in compliance with
+## the License. You may obtain a copy of the License at
+##
+## http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+## ------------------------------------------------------------------------
+
+
+log4j.rootLogger=INFO, out
+
+# uncomment the following line to turn on Camel debugging
+#log4j.logger.org.apache.camel=DEBUG
+
+# uncomment the following line to turn on ActiveMQ debugging
+#log4j.logger.org.apache.activemq=DEBUG
+
+log4j.logger.org.springframework=WARN
+
+
+# CONSOLE appender not used by default
+log4j.appender.out=org.apache.log4j.ConsoleAppender
+log4j.appender.out.layout=org.apache.log4j.PatternLayout
+log4j.appender.out.layout.ConversionPattern=[%30.30t] %-30.30c{1} %-5p %m%n
+#log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+
+log4j.throwableRenderer=org.apache.log4j.EnhancedThrowableRenderer
\ No newline at end of file
Added: labs/magnet/birdie/src/test/java/org/apache/labs/magnet/twitter/TwitterPojoTest.java
URL: http://svn.apache.org/viewvc/labs/magnet/birdie/src/test/java/org/apache/labs/magnet/twitter/TwitterPojoTest.java?rev=1208160&view=auto
==============================================================================
--- labs/magnet/birdie/src/test/java/org/apache/labs/magnet/twitter/TwitterPojoTest.java (added)
+++ labs/magnet/birdie/src/test/java/org/apache/labs/magnet/twitter/TwitterPojoTest.java Wed Nov 30 00:51:37 2011
@@ -0,0 +1,28 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.labs.magnet.twitter;
+
+import org.junit.Test;
+
+
+public class TwitterPojoTest {
+
+ @Test
+ public void testTweet() throws Exception {
+ }
+}
Modified: labs/magnet/magnet/pom.xml
URL: http://svn.apache.org/viewvc/labs/magnet/magnet/pom.xml?rev=1208160&r1=1208159&r2=1208160&view=diff
==============================================================================
--- labs/magnet/magnet/pom.xml (original)
+++ labs/magnet/magnet/pom.xml Wed Nov 30 00:51:37 2011
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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/maven-v4_0_0.xsd">
+<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -16,5 +17,130 @@
<description>
Parent project for the Magnet application.
</description>
-
+
+ <properties>
+ <cxf.version>2.5.0</cxf.version>
+ <camel.version>2.8.2</camel.version>
+ <activemq.version>5.5.0</activemq.version>
+ <karaf.version>2.2.4</karaf.version>
+
+ <spring.version>3.0.6.RELEASE</spring.version>
+ <slf4j.version>1.6.1</slf4j.version>
+ <log4j.version>1.2.16</log4j.version>
+ <jackson.version>1.9.2</jackson.version>
+
+ <junit.version>4.8.1</junit.version>
+ </properties>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>${log4j.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${junit.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <build>
+ <defaultGoal>install</defaultGoal>
+
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ <maxmem>256M</maxmem>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.4.3</version>
+ <configuration>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>2.4.1</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <version>2.3.1</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-plugin-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.1.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-5</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.5</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.1</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <version>2.5</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>2.3.5</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.karaf.tooling</groupId>
+ <artifactId>features-maven-plugin</artifactId>
+ <version>${karaf.version}</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
</project>
Modified: labs/magnet/pom.xml
URL: http://svn.apache.org/viewvc/labs/magnet/pom.xml?rev=1208160&r1=1208159&r2=1208160&view=diff
==============================================================================
--- labs/magnet/pom.xml (original)
+++ labs/magnet/pom.xml Wed Nov 30 00:51:37 2011
@@ -43,6 +43,7 @@
<modules>
<module>magnet</module>
+ <module>birdie</module>
</modules>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org
No comments:
Post a Comment