File: pom.xml

package info (click to toggle)
intervalstorej 1.2%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,004 kB
  • sloc: java: 4,354; xml: 44; makefile: 18; sh: 12
file content (36 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download | duplicates (2)
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
29
30
31
32
33
34
35
36
<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>
  <groupId>com.github.bartongroup</groupId>
  <artifactId>intervalstorej</artifactId>
  <packaging>jar</packaging>
  <name>IntervalStoreJ</name>
  <version>1.2</version>
  <description>A Java read-write implementation of the Nested Containment List data structure</description>
  <url>https://github.com/bartongroup/IntervalStoreJ/</url>
  <licenses>
    <license>
      <name>GNU Lesser General Public License Version 3+</name>
      <url>http://www.gnu.org/licenses/lgpl.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git://github.com/bartongroup/IntervalStoreJ.git</connection>
    <url>https://github.com/bartongroup/IntervalStoreJ</url>
  </scm>

  <dependencies>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>debian</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.beust</groupId>
      <artifactId>jcommander</artifactId>
      <version>debian</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>