File: pom.xml

package info (click to toggle)
guice 4.0~beta5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,328 kB
  • ctags: 8,991
  • sloc: xml: 60,677; java: 50,919; sh: 119; makefile: 37; jsp: 12
file content (28 lines) | stat: -rw-r--r-- 814 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>com.google.inject.extensions</groupId>
    <artifactId>extensions-parent</artifactId>
    <version>4.0-beta5</version>
  </parent>

  <artifactId>guice-testlib</artifactId>

  <name>Google Guice - Extensions - TestLib</name>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>**/TestScope*</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>