TSK-850: reconfigured taskana-web

This commit is contained in:
Mustapha Zorgati 2019-05-09 11:51:47 +02:00 committed by Holger Hagen
parent cd807e62f2
commit 4311ae6c5c
1 changed files with 39 additions and 141 deletions

View File

@ -1,148 +1,46 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>pro.taskana</groupId> <artifactId>taskana-web</artifactId>
<artifactId>taskana-web</artifactId>
<version>1.1.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>taskana web</description>
<url>http://taskana.pro</url>
<licenses> <name>${project.groupId}:${project.artifactId}</name>
<license> <description>taskana web</description>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers> <parent>
<developer> <artifactId>taskana-rest-parent</artifactId>
<name>Holger Hagen</name> <groupId>pro.taskana</groupId>
<email>holger.hagen@novatec-gmbh.de</email> <version>1.1.2-SNAPSHOT</version>
<organization>NovaTec Consulting GmbH</organization> <relativePath>../rest</relativePath>
<organizationUrl>https://www.novatec-gmbh.de</organizationUrl> </parent>
</developer>
</developers>
<scm> <build>
<connection>scm:git:git://github.com/taskana/taskana.git</connection> <plugins>
<developerConnection>scm:git:ssh://github.com:taskana/taskana.git</developerConnection> <plugin>
<url>http://github.com/taskana/taskana/tree/master</url> <groupId>org.apache.maven.plugins</groupId>
</scm> <artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
<properties> <executions>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <execution>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <id>copy-static</id>
<java.version>1.8</java.version> <phase>validate</phase>
</properties> <goals>
<goal>copy-resources</goal>
<profiles> </goals>
<profile> <configuration>
<id>snapshot</id> <outputDirectory>
<build> ${project.build.outputDirectory}/static
<plugins> </outputDirectory>
<plugin> <resources>
<groupId>org.apache.maven.plugins</groupId> <resource>
<artifactId>maven-gpg-plugin</artifactId> <directory>dist</directory>
<version>1.5</version> </resource>
<executions> </resources>
<execution> </configuration>
<id>sign-artifacts</id> </execution>
<phase>verify</phase> </executions>
<goals> </plugin>
<goal>sign</goal> </plugins>
</goals> </build>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>copy-static</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.outputDirectory}/static
</outputDirectory>
<resources>
<resource>
<directory>dist</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>