wisemapping-open-source/wise-webapp/pom.xml

356 lines
14 KiB
XML
Raw Normal View History

<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">
2009-06-07 20:59:43 +02:00
<modelVersion>4.0.0</modelVersion>
<artifactId>wise-webapp</artifactId>
<name>WiseMapping Webapp</name>
<url>http://www.wisemapping.org</url>
2023-11-25 04:26:36 +01:00
<version>5.1.0-SNAPSHOT</version>
2009-06-07 20:59:43 +02:00
<parent>
2023-11-25 04:26:36 +01:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
2009-06-07 20:59:43 +02:00
</parent>
2022-02-16 04:38:12 +01:00
<properties>
2023-11-25 04:26:36 +01:00
<com.wisemapping.version>5.1.0-SNAPSHOT</com.wisemapping.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<org.springframework.version>6.0.11</org.springframework.version>
<org.springframework.addons>6.1.2</org.springframework.addons>
2023-07-29 07:46:38 +02:00
<spring-security-taglibs.version>6.0.2</spring-security-taglibs.version>
</properties>
2009-06-07 20:59:43 +02:00
<dependencies>
<dependency>
<groupId>org.wisemapping</groupId>
<artifactId>wise-ui</artifactId>
<version>${com.wisemapping.version}</version>
2012-02-01 04:03:32 +01:00
<type>war</type>
2009-06-07 20:59:43 +02:00
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
2020-11-07 06:35:54 +01:00
<version>1.7</version>
2009-06-07 20:59:43 +02:00
<scope>compile</scope>
</dependency>
<dependency>
2023-11-25 04:26:36 +01:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2009-06-07 20:59:43 +02:00
</dependency>
<dependency>
2023-11-25 04:26:36 +01:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
2011-10-03 00:16:13 +02:00
<dependency>
2023-11-25 04:26:36 +01:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
2023-08-13 03:57:13 +02:00
<dependency>
2023-11-25 04:26:36 +01:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
2023-08-13 03:57:13 +02:00
</dependency>
<dependency>
2023-11-25 04:26:36 +01:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
2023-08-13 03:57:13 +02:00
</dependency>
2023-11-25 04:26:36 +01:00
2022-12-06 05:07:35 +01:00
<dependency>
2023-11-25 04:26:36 +01:00
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.7.0</version>
<scope>test</scope>
2022-12-06 05:07:35 +01:00
</dependency>
<dependency>
2023-11-25 04:26:36 +01:00
<groupId>com.intellij</groupId>
<artifactId>annotations</artifactId>
<version>12.0</version>
<scope>compile</scope>
</dependency>
2023-11-28 06:08:28 +01:00
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<version>10.1.9</version>
<scope>provided</scope>
</dependency>
<dependency>
2023-11-25 04:26:36 +01:00
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.5.4</version>
</dependency>
2023-11-25 04:26:36 +01:00
<!-- <dependency>-->
<!-- <groupId>org.springframework</groupId>-->
<!-- <artifactId>spring-beans</artifactId>-->
<!-- <version>${org.springframework.version}</version>-->
<!-- <scope>compile</scope>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework</groupId>-->
<!-- <artifactId>spring-tx</artifactId>-->
<!-- <version>${org.springframework.version}</version>-->
<!-- <scope>compile</scope>-->
<!-- </dependency>-->
2022-02-19 21:39:38 +01:00
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>${spring-security-taglibs.version}</version>
</dependency>
2023-10-30 06:34:45 +01:00
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
2023-11-25 04:26:36 +01:00
<version>4.0.0</version>
2020-11-07 20:56:38 +01:00
</dependency>
2020-11-07 23:42:00 +01:00
<!-- Hibernate Validator -->
2020-11-07 20:56:38 +01:00
<dependency>
<groupId>org.hibernate.validator</groupId>
2020-11-07 23:42:00 +01:00
<artifactId>hibernate-validator</artifactId>
2023-07-29 07:46:38 +02:00
<version>8.0.1.Final</version>
2020-11-07 20:56:38 +01:00
</dependency>
2009-06-07 20:59:43 +02:00
<dependency>
2023-07-29 07:46:38 +02:00
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
<version>2.1.2</version>
2009-06-07 20:59:43 +02:00
</dependency>
<dependency>
2023-08-12 03:18:40 +02:00
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.1.0</version>
2009-06-07 20:59:43 +02:00
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.9.0</version>
2009-06-07 20:59:43 +02:00
</dependency>
2023-08-17 04:35:56 +02:00
<dependency>
<groupId>org.eclipse.angus</groupId>
<artifactId>jakarta.mail</artifactId>
2023-08-17 05:17:29 +02:00
<version>2.0.2</version>
2023-08-17 04:35:56 +02:00
</dependency>
2009-06-07 20:59:43 +02:00
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
2023-04-02 01:56:29 +02:00
<version>2.20.0</version>
2009-06-07 20:59:43 +02:00
</dependency>
2022-02-15 04:59:36 +01:00
<!-- https://mvnrepository.com/artifact/commons-validator/commons-validator -->
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>1.7</version>
</dependency>
2023-07-29 07:46:38 +02:00
2009-06-07 20:59:43 +02:00
<!-- Only for test purposes -->
<dependency>
<groupId>org.hsqldb</groupId>
2009-06-07 20:59:43 +02:00
<artifactId>hsqldb</artifactId>
2023-04-02 01:56:29 +02:00
<version>2.7.1</version>
2009-06-07 20:59:43 +02:00
<scope>runtime</scope>
</dependency>
2012-02-13 01:57:11 +01:00
<dependency>
2020-11-07 06:35:54 +01:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
2023-07-29 07:46:38 +02:00
<version>2.15.1</version>
</dependency>
2023-07-29 07:46:38 +02:00
<dependency>
2023-07-29 07:46:38 +02:00
<groupId>jakarta.transaction</groupId>
<artifactId>jakarta.transaction-api</artifactId>
<version>2.0.1</version>
</dependency>
2023-07-29 07:46:38 +02:00
2014-07-14 07:43:24 +02:00
<dependency>
2023-07-29 07:46:38 +02:00
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
2020-11-07 06:35:54 +01:00
</dependency>
2023-08-01 06:01:33 +02:00
<!-- JSLT implementation -->
<dependency>
<groupId>jakarta.servlet.jsp.jstl</groupId>
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
2022-01-05 03:20:30 +01:00
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
2023-04-02 01:56:29 +02:00
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
2022-01-05 03:20:30 +01:00
<artifactId>fluent-hc</artifactId>
2023-04-02 01:56:29 +02:00
<version>4.5.14</version>
</dependency>
2023-07-29 07:46:38 +02:00
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${org.springframework.addons}</version>
</dependency>
2023-11-28 06:08:28 +01:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
2009-06-07 20:59:43 +02:00
</dependencies>
2014-01-19 16:33:56 +01:00
<build>
<plugins>
2009-06-07 20:59:43 +02:00
<plugin>
2014-07-14 07:43:24 +02:00
<groupId>org.apache.maven.plugins</groupId>
2009-06-07 20:59:43 +02:00
<artifactId>maven-war-plugin</artifactId>
2023-06-30 03:09:40 +02:00
<version>3.4.0</version>
<configuration>
2009-06-07 20:59:43 +02:00
<warName>wisemapping</warName>
<overlays>
2012-02-01 04:03:32 +01:00
<overlay>
<groupId>org.wisemapping</groupId>
<artifactId>wise-ui</artifactId>
<targetPath>/static/mindplot/</targetPath>
2011-10-03 00:16:13 +02:00
<includes>
<include>wisemapping-mindplot/package/dist/*</include>
2011-10-03 00:16:13 +02:00
</includes>
</overlay>
2009-06-07 20:59:43 +02:00
<overlay>
<groupId>org.wisemapping</groupId>
<artifactId>wise-ui</artifactId>
<targetPath>/static/webapp/</targetPath>
2009-06-07 20:59:43 +02:00
<includes>
<include>wisemapping-webapp/package/dist/*</include>
2009-06-07 20:59:43 +02:00
</includes>
</overlay>
</overlays>
<archiveClasses>true</archiveClasses>
2023-07-29 07:46:38 +02:00
<packagingExcludes>
WEB-INF/lib/commons-logging-*.jar,
</packagingExcludes>
2009-06-07 20:59:43 +02:00
<webResources>
<resource>
<directory>src/main/resources</directory>
<targetPath>WEB-INF</targetPath>
<includes>
<include>*.wsdl</include>
<include>*.xsd</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
2023-11-25 04:26:36 +01:00
2009-06-07 20:59:43 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
2023-07-31 03:04:45 +02:00
<version>0.8.10</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-prepare-agent-integration</id>
<phase>pre-integration-test</phase>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
<configuration>
<excludes>
<exclude>**/*Test*</exclude>
</excludes>
<propertyName>integrationTestArgLine</propertyName>
</configuration>
</execution>
<execution>
<id>default-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
<minimum>0.10</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
<execution>
<id>default-report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
2014-01-25 08:53:51 +01:00
2012-03-10 21:35:35 +01:00
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
2023-07-29 07:46:38 +02:00
<version>11.0.15</version>
2009-06-07 20:59:43 +02:00
<configuration>
<httpConnector>
<port>8080</port>
</httpConnector>
2023-07-31 03:04:45 +02:00
<jvmArgs>-Ddatabase.base.url=${project.build.directory} -Djetty.port=8080</jvmArgs>
2012-03-10 21:35:35 +01:00
<stopPort>9999</stopPort>
2023-07-29 07:46:38 +02:00
<deployMode>FORK</deployMode>
2023-07-29 08:09:44 +02:00
<stopKey>foo</stopKey>
2023-07-29 07:46:38 +02:00
<webApp>
<war>${project.build.directory}/wisemapping.war</war>
<overrideDescriptor>${project.basedir}/webdefault.xml</overrideDescriptor>
2023-07-29 07:46:38 +02:00
</webApp>
2009-06-07 20:59:43 +02:00
</configuration>
2012-03-10 21:35:35 +01:00
<executions>
<execution>
2020-11-07 06:35:54 +01:00
<id>run-forked</id>
2012-03-10 21:35:35 +01:00
<phase>pre-integration-test</phase>
<goals>
2023-07-29 08:09:44 +02:00
<goal>start-war</goal>
2012-03-10 21:35:35 +01:00
</goals>
<configuration>
<useTestScope>true</useTestScope>
2012-03-10 21:35:35 +01:00
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
2009-06-07 20:59:43 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
2012-03-10 21:35:35 +01:00
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
2009-06-07 20:59:43 +02:00
</plugins>
</build>
</project>