2020-03-26 10:46:24 +01:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2016-04-20 12:54:16 +02:00
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>
<parent >
<artifactId > maven-parent</artifactId>
<groupId > org.gcube.tools</groupId>
2020-03-26 10:46:24 +01:00
<version > 1.1.0</version>
2016-04-20 12:54:16 +02:00
<relativePath />
</parent>
<groupId > org.gcube.portal</groupId>
<artifactId > threadlocal-vars-cleaner</artifactId>
2020-03-26 09:52:37 +01:00
<version > 2.1.1-SNAPSHOT</version>
2016-04-20 12:54:16 +02:00
<packaging > jar</packaging>
<name > threadlocal-vars-cleaner</name>
<description > This component clean the Smartgears ThreadLocal variables each time a new Thread is assigned to a request from tomcat thread pool</description>
<properties >
2020-03-26 09:52:37 +01:00
<java-version > 1.8</java-version>
2016-04-20 12:54:16 +02:00
<distroDirectory > ${project.basedir}/distro</distroDirectory>
<webappDirectory > ${project.build.directory}/${project.build.finalName}</webappDirectory>
<distroDirectory > distro</distroDirectory>
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding > UTF-8</project.reporting.outputEncoding>
</properties>
<scm >
2020-03-26 10:46:24 +01:00
<connection > scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
<developerConnection > scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
<url > https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
2016-04-20 12:54:16 +02:00
</scm>
<dependencyManagement >
<dependencies >
<dependency >
<groupId > org.gcube.distribution</groupId>
<artifactId > maven-portal-bom</artifactId>
2020-03-26 10:46:24 +01:00
<version > 3.6.0-SNAPSHOT</version>
2016-04-20 12:54:16 +02:00
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies >
<dependency >
<groupId > org.apache.tomcat</groupId>
2016-06-23 12:14:31 +02:00
<artifactId > tomcat-catalina</artifactId>
<version > 7.0.57</version>
2016-06-23 14:35:14 +02:00
<scope > provided</scope>
2016-04-20 12:54:16 +02:00
</dependency>
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > authorization-client</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > common-authorization</artifactId>
<scope > provided</scope>
</dependency>
2016-11-10 15:10:01 +01:00
<dependency >
<groupId > org.gcube.common.portal</groupId>
<artifactId > portal-manager</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > com.liferay.portal</groupId>
<artifactId > portal-service</artifactId>
<scope > provided</scope>
</dependency>
2016-04-20 12:54:16 +02:00
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > 3.8.1</version>
<scope > test</scope>
</dependency>
</dependencies>
<build >
<finalName > threadlocal-vars-cleaner-${project.version}</finalName>
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-war-plugin</artifactId>
<executions >
<execution >
<phase > compile</phase>
<goals >
<goal > exploded</goal>
</goals>
</execution>
</executions>
<configuration >
<webappDirectory > ${webappDirectory}</webappDirectory>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
2020-03-26 10:46:24 +01:00
<source > ${maven.compiler.source}</source>
<target > ${maven.compiler.target}</target>
2016-04-20 12:54:16 +02:00
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2020-03-26 10:46:24 +01:00
<artifactId > maven-javadoc-plugin</artifactId>
2016-04-20 12:54:16 +02:00
<configuration >
2020-03-26 10:46:24 +01:00
<additionalparam > -Xdoclint:none</additionalparam>
<additionalJOption > -Xdoclint:none</additionalJOption>
2016-04-20 12:54:16 +02:00
</configuration>
2020-03-26 10:46:24 +01:00
<version > 3.1.0</version>
2016-04-20 12:54:16 +02:00
<executions >
<execution >
2020-03-26 10:46:24 +01:00
<id > generate-doc</id>
2016-05-02 17:04:32 +02:00
<phase > install</phase>
<goals >
2020-03-26 10:46:24 +01:00
<goal > jar</goal>
2016-05-02 17:04:32 +02:00
</goals>
</execution>
</executions>
</plugin>
2016-04-20 12:54:16 +02:00
</plugins>
</build>
</project>