forked from metanorma/barcode4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
93 lines (93 loc) · 2.85 KB
/
pom.xml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.barcode4j</groupId>
<artifactId>barcode4j</artifactId>
<packaging>jar</packaging>
<name>Barcode4J</name>
<version>2.3</version>
<description>Barcode4J is a flexible generator for barcodes written in Java.</description>
<url>http://barcode4j.sourceforge.net</url>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Metanorma Apache Maven Packages</name>
<url>https://maven.pkg.github.com/metanorma/barcode4j</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
<project.reporting.outputEncoding>ISO-8859-1</project.reporting.outputEncoding>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://barcode4j.cvs.sourceforge.net/barcode4j</url>
<connection>scm:cvs:pserver:[email protected]:/cvsroot/barcode4j:barcode4j</connection>
</scm>
<developers>
<developer>
<id>jmaerki</id>
<name>Jeremias Märki</name>
<email>[email protected]</email>
</developer>
<developer>
<id>the_webmaestro</id>
<name>Web Maestro Clay Leeds</name>
<email>[email protected]</email>
</developer>
<developer>
<id>nicolaken</id>
<name>Nicola Ken Barozzi</name>
<email>[email protected]</email>
</developer>
<developer>
<id>buerkle</id>
<name>Dietmar Bürkle</name>
<email>[email protected]</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>avalon-framework</groupId>
<artifactId>avalon-framework-api</artifactId>
<version>4.2.0</version>
</dependency>
<dependency>
<groupId>avalon-framework</groupId>
<artifactId>avalon-framework-impl</artifactId>
<version>4.2.0</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
</dependencies>
</project>