| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- <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>cz.hsrs.maplog</groupId>
- <artifactId>DBService</artifactId>
- <packaging>war</packaging>
- <version>1.3.5-SNAPSHOT</version>
- <name>dbservice Maven Webapp</name>
- <url>http://maven.apache.org</url>
- <build>
- <finalName>${project.artifactId}-${project.version}</finalName>
- <sourceDirectory>./src/main/java</sourceDirectory>
- <testSourceDirectory>./src/test/java</testSourceDirectory>
- <resources>
- <resource>
- <directory>./src/main/resources</directory>
- </resource>
- </resources>
- <testResources>
- <testResource>
- <directory>./src/test/resources</directory>
- </testResource>
- </testResources>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>buildnumber-maven-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <doCheck>false</doCheck>
- <doUpdate>false</doUpdate>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.tomcat.maven</groupId>
- <artifactId>tomcat7-maven-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <url>http://foodie.lesprojekt.cz:8080/manager/text</url>
- <server>foodietomcat</server>
- <path>/MapLog</path>
- <!--<path>/MapLogLV</path>-->
- <!--<path>/MapLogIT</path>-->
- <!--<path>/MapLogOT</path>-->
- </configuration>
- </plugin>
- <!-- <plugin>
- <groupId>org.apache.tomcat.maven</groupId>
- <artifactId>tomcat7-maven-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <path>/SensLog</path>
- <url>http://otn.bnhelp.cz/manager/text</url>
- <server>otntomcat</server>
- </configuration>
- </plugin>
- -->
- <!--
- <plugin>
- <groupId>org.apache.tomcat.maven</groupId>
- <artifactId>tomcat7-maven-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <path>/MapLog</path>
- <url>http://ft.lesprojekt.cz:8080/manager/text</url>
- <server>foodietomcat</server>
- </configuration>
- </plugin>
- -->
- <!--
- <plugin>
- <groupId>org.apache.tomcat.maven</groupId>
- <artifactId>tomcat7-maven-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <path>/SensLog</path>
- <url>http://foodie.wirelessinfo.cz/manager/text</url>
- <server>foodiepoland</server>
- </configuration>
- </plugin>
- -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <archive>
- <manifest>
- <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
- </manifest>
- <manifestEntries>
- <Implementation-Build>${buildNumber}</Implementation-Build>
- </manifestEntries>
- </archive>
- <warSourceExcludes>wwwlibs/**</warSourceExcludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <version>2.4</version>
- <configuration>
- <instrumentation>
- <ignores>
- <ignore>com.example.boringcode.*</ignore>
- </ignores>
- <excludes>
- <exclude>com/example/dullcode/**/*.class</exclude>
- <exclude>com/example/**/*Test.class</exclude>
- </excludes>
- </instrumentation>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>clean</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <!-- ======================================================= -->
- <!-- Compilation. -->
- <!-- ======================================================= -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <source>1.8</source> <!-- The -source argument for the Java compiler. -->
- <target>1.8</target> <!-- The -target argument for the Java compiler. -->
- <debug>true</debug> <!-- Whether to include debugging information. -->
- <encoding>UTF-8</encoding> <!-- The -encoding argument for the Java compiler. -->
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <dependencies>
- <!-- Provided dependencies -->
- <dependency>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports</artifactId>
- <version>4.5.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax</groupId>
- <artifactId>javaee-api</artifactId>
- <version>7.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.sun.jersey.contribs</groupId>
- <artifactId>jersey-multipart</artifactId>
- <version>1.19.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- <version>2.11.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-annotations</artifactId>
- <version>2.11.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-server</artifactId>
- <version>2.31</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.7</version>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.4</version>
- <classifier>jdk15</classifier>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.2</version>
- </dependency>
- <dependency>
- <groupId>org.jfree</groupId>
- <artifactId>jfreechart</artifactId>
- <version>1.5.0</version>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>42.2.14</version>
- </dependency>
- <!-- Tests -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.5</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-util</artifactId>
- <version>7.0.0.pre5</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- </properties>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <version>2.4</version>
- </plugin>
- </plugins>
- </reporting>
- <!--
- <scm>
- <connection>scm:svn:svn://bnhelp.cz/maplog/tags/DBService-1.2</connection>
- <developerConnection>scm:svn:svn://bnhelp.cz/maplog/tags/DBService-1.2</developerConnection>
- <url>http://somerepository.com/view.cvs/tags/DBService-1.2</url>
- </scm>
- -->
- <scm>
- <connection>scm:git:git+ssh://git@git.ccss.cz/ccss/maplogagri</connection>
- <developerConnection>scm:git:git+ssh://git@git.ccss.cz/ccss/maplogagri</developerConnection>
- <url>http://somerepository.com/view.cvs/tags/DBService-1.3</url>
- </scm>
- <repositories>
- <repository>
- <id>com.mvnrepository</id>
- <name>mvnrepository</name>
- <url>http://mvnrepository.com</url>
- </repository>
- </repositories>
- </project>
|