| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>sicura.web</groupId>
- <artifactId>sicura.web</artifactId>
- <version>1.7.9.2</version>
- <packaging>war</packaging>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <finalName>sicura</finalName>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.6.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>3.0.0</version>
- <configuration>
- <warSourceDirectory>WebContent</warSourceDirectory>
- </configuration>
- </plugin>
-
- </plugins>
- </build>
- <parent>
- <groupId>web-project</groupId>
- <artifactId>web-project</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>sicura.entities</groupId>
- <artifactId>sicura.entities</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>sicura.business</groupId>
- <artifactId>sicura.business</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>web.common</groupId>
- <artifactId>web.common</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.sourceforge.jtds/jtds -->
- <dependency>
- <groupId>net.sourceforge.jtds</groupId>
- <artifactId>jtds</artifactId>
- <version>1.2.7</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
- <!--
- <dependency>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports</artifactId>
- <version>6.4.3</version>
- </dependency>
- -->
-
- <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports-fonts -->
- <!--
- <dependency>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports-fonts</artifactId>
- <version>6.0.0</version>
- </dependency>
- -->
- <!-- https://mvnrepository.com/artifact/stax/stax-api -->
- <dependency>
- <groupId>stax</groupId>
- <artifactId>stax-api</artifactId>
- <version>1.0.1</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/stax/stax -->
- <dependency>
- <groupId>stax</groupId>
- <artifactId>stax</artifactId>
- <version>1.2.0</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.xml.stream/stax-api -->
- <dependency>
- <groupId>javax.xml.stream</groupId>
- <artifactId>stax-api</artifactId>
- <version>1.0-2</version>
- <scope>provided</scope>
- </dependency>
-
-
- <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
- <dependency>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports</artifactId>
- <version>6.13.0</version>
- </dependency>
-
- <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports-functions -->
- <dependency>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports-functions</artifactId>
- <version>6.13.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports-fonts -->
- <dependency>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports-fonts</artifactId>
- <version>6.13.0</version>
- </dependency>
- </dependencies>
- </project>
|