SHINDIG-1056 by lipeng, BasicRemoteContentTest doesn't depend on static private key...
[shindig.git] / java / pom.xml
blobbfcb116a5d3a6f7600c573e9e67e1fdf7432bcfa
1 <?xml version="1.0" encoding="UTF-8"?><!--
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements.  See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership.  The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License.  You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18 -->
19 <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">
20   <modelVersion>4.0.0</modelVersion>
22   <parent>
23     <groupId>org.apache.shindig</groupId>
24     <artifactId>shindig-project</artifactId>
25     <version>1.1-SNAPSHOT</version>
26   </parent>
28   <artifactId>shindig-parent</artifactId>
29   <packaging>pom</packaging>
31   <name>Apache Shindig Project Parent</name>
32   <description>Parent POM defining settings that can be used across Java impl</description>
34   <modules>
35     <module>common</module>
36     <module>gadgets</module>
37     <module>social-api</module>
38     <module>server</module>
39     <module>../features</module>
40   </modules>
42   <scm>
43     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/java</connection>
44     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/java</developerConnection>
45     <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/java</url>
46   </scm>
48   <properties>
49     <java.util.logging.test.level>OFF</java.util.logging.test.level>
50   </properties>
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.apache.maven.plugins</groupId>
56         <artifactId>maven-surefire-plugin</artifactId>
57         <configuration>
58           <systemProperties>
59             <property>
60               <name>java.util.logging.config.file</name>
61               <value>target/test-classes/logging.properties</value>
62             </property>
63           </systemProperties>
64         </configuration>
65       </plugin>
66     </plugins>
68     <testResources>
69       <testResource>
70         <directory>src/test/resources</directory>
71         <filtering>false</filtering>
72       </testResource>
73       <testResource>
74         <directory>src/test/resources</directory>
75         <includes>
76           <include>logging.properties</include>
77         </includes>
78         <filtering>true</filtering>
79       </testResource>
80     </testResources>
81   </build>
82 </project>