source: dispositivos_moviles/jdigidoc-3.7/jdigidoc/jdigidoc-helloworld/pom.xml @ cb83cc5

Last change on this file since cb83cc5 was 62396ee, checked in by Antonio Araujo Brett <aaraujo@…>, 11 years ago

Códigos fuentes de la biblioteca jdigidoc usada en Android.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1<project>
2  <modelVersion>4.0.0</modelVersion>
3  <groupId>ee.eesti.id</groupId>
4  <artifactId>jdigidoc-helloworld</artifactId>
5  <packaging>war</packaging>
6  <name>Java DigiDoc library example project</name>
7  <version>2.3.98</version>
8  <description>A simple "quickstart" web project for jDigiDoc</description>
9  <url>http://id.eesti.ee</url>
10  <licenses>
11    <license>
12      <name>GNU Lesser General Public License, Version 2.1</name>
13      <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
14      <distribution>repo</distribution>
15    </license>
16  </licenses>
17  <scm>
18    <url>https://id.eesti.ee/idtrac/browser/jdigidoc</url>
19  </scm>
20  <dependencies>
21    <!-- Modern java Web application dependencies (Servlet, JSP, JSTL) -->
22    <dependency>
23      <groupId>javax.servlet</groupId>
24      <artifactId>servlet-api</artifactId>
25      <version>2.5</version>
26      <scope>provided</scope>
27    </dependency>
28    <dependency>
29      <groupId>javax.servlet.jsp</groupId>
30      <artifactId>jsp-api</artifactId>
31      <version>2.1</version>
32      <scope>provided</scope>
33    </dependency>
34    <dependency>
35      <groupId>javax.servlet</groupId>
36      <artifactId>jstl</artifactId>
37      <version>1.2</version>
38    </dependency> 
39
40    <!-- JDigiDoc Dependency -->
41    <dependency>
42      <groupId>ee.eesti.id</groupId>
43      <artifactId>jdigidoc</artifactId>
44      <version>2.3.98</version>
45    </dependency>
46  </dependencies>
47
48  <!-- Enable jDigiDoc beta repository -->
49  <repositories>
50    <repository>
51      <id>jdigidoc-devel</id>
52      <url>http://ftp.id.eesti.ee/pub/id/mvnrepo</url>
53    </repository>
54  </repositories>
55
56  <build>
57    <plugins>
58      <!-- Use Java 1.5, we live in modern times -->
59      <plugin>
60        <groupId>org.apache.maven.plugins</groupId>
61        <artifactId>maven-compiler-plugin</artifactId>
62        <configuration>
63          <source>1.5</source>
64          <target>1.5</target>
65        </configuration>
66      </plugin>
67
68      <!-- Enable jetty to simplify development and testing -->
69      <plugin>
70        <groupId>org.mortbay.jetty</groupId>
71        <artifactId>maven-jetty-plugin</artifactId> 
72      </plugin>
73    </plugins>
74  </build>
75</project>
Note: See TracBrowser for help on using the repository browser.