aboutsummaryrefslogtreecommitdiff
path: root/extensions/persist
diff options
context:
space:
mode:
authormcculls <mcculls@d779f126-a31b-0410-b53b-1d3aecad763e>2010-11-04 02:22:00 +0000
committermcculls <mcculls@d779f126-a31b-0410-b53b-1d3aecad763e>2010-11-04 02:22:00 +0000
commit8846db3f75a25c0b66620bb5c9e43eb29a3ea6b9 (patch)
tree1d3ec5e1e3dc75f8a2062aa8039f8e452a411eb3 /extensions/persist
parentfdd95007ad6f2ef60e57c174c546f5c7678cb714 (diff)
downloadguice-8846db3f75a25c0b66620bb5c9e43eb29a3ea6b9.tar.gz
Update Maven poms to use new jarjar processing rules, allow jarjar and munge profiles to be turned off, and synchronize bundle headers in Ant and Maven builds
git-svn-id: https://google-guice.googlecode.com/svn/trunk@1360 d779f126-a31b-0410-b53b-1d3aecad763e
Diffstat (limited to 'extensions/persist')
-rw-r--r--extensions/persist/pom.xml26
1 files changed, 8 insertions, 18 deletions
diff --git a/extensions/persist/pom.xml b/extensions/persist/pom.xml
index 92c8e9a6..541b0292 100644
--- a/extensions/persist/pom.xml
+++ b/extensions/persist/pom.xml
@@ -18,16 +18,19 @@
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.6.1</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.6.1</version>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
@@ -43,17 +46,4 @@
</dependency>
</dependencies>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>**/DynamicFinderTest.java</exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
</project>