123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <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>de.tudresden.inf.st</groupId>
- <artifactId>salespoint-framework</artifactId>
- <version>6.1.2.BUILD-SNAPSHOT</version>
- <name>Salespoint</name>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>1.2.1.RELEASE</version>
- </parent>
- <properties>
- <dev>/dev</dev>
- </properties>
- <profiles>
- <profile>
- <id>release</id>
- <properties>
- <dev></dev>
- </properties>
- </profile>
- </profiles>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-jpa</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-mail</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-security</artifactId>
- </dependency>
- <dependency>
- <groupId>org.thymeleaf.extras</groupId>
- <artifactId>thymeleaf-extras-springsecurity3</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hsqldb</groupId>
- <artifactId>hsqldb</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.joda</groupId>
- <artifactId>joda-money</artifactId>
- <version>0.9.1</version>
- </dependency>
- <dependency>
- <groupId>org.jadira.usertype</groupId>
- <artifactId>usertype.extended</artifactId>
- <version>3.2.0.GA</version>
- </dependency>
- <!-- For changelog creation -->
- <dependency>
- <groupId>com.jayway.jsonpath</groupId>
- <artifactId>json-path</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-ssh</artifactId>
- <version>2.6</version>
- </extension>
- </extensions>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- <compilerArgument>-proc:none</compilerArgument>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <executions>
- <execution>
- <id>package-javadoc</id>
- <goals>
- <goal>jar</goal>
- </goals>
- <phase>package</phase>
- </execution>
- </executions>
- <configuration>
- <additionalparam>-Xdoclint:none</additionalparam>
- <excludePackageNames>org.thymeleaf.*</excludePackageNames>
- <outputDirectory>${project.build.directory}/site${dev}/api</outputDirectory>
- <show>package</show>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.asciidoctor</groupId>
- <artifactId>asciidoctor-maven-plugin</artifactId>
- <version>1.5.0</version>
- <executions>
- <execution>
- <id>website</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>process-asciidoc</goal>
- </goals>
- <configuration>
- <sourceDirectory>src/main/asciidoc/site</sourceDirectory>
- <outputDirectory>${project.build.directory}/site</outputDirectory>
- </configuration>
- </execution>
- <execution>
- <id>reference</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>process-asciidoc</goal>
- </goals>
- <configuration>
- <sourceDocumentName>salespoint-reference.adoc</sourceDocumentName>
- <outputDirectory>${project.build.directory}/site${dev}</outputDirectory>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <doctype>book</doctype>
- <backend>html5</backend>
- <sourceHighlighter>prettify</sourceHighlighter>
- <outputDirectory>${project.build.directory}/site</outputDirectory>
- <attributes>
- <version>${project.version}</version>
- <majorversion>6</majorversion>
- <linkcss>true</linkcss>
- <numbered>true</numbered>
- <icons>font</icons>
- <sectanchors>true</sectanchors>
- <dev>${dev}</dev>
- </attributes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>salespoint</id>
- <url>sftp://st.inf.tu-dresden.de:44/home/salespnt/salespoint/repository</url>
- </repository>
- <site>
- <id>salespoint</id>
- <url>sftp://st.inf.tu-dresden.de:44/home/salespnt/salespoint</url>
- </site>
- </distributionManagement>
- <repositories>
- <repository>
- <id>spring-libs-snapshot</id>
- <url>https://repo.spring.io/libs-snapshot</url>
- </repository>
- </repositories>
- </project>
|