pom.xml.ftl 2.2 KB
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
<#ibiztemplate>
TARGET=PSSYSTEM
</#ibiztemplate>
<?xml version="1.0" encoding="UTF-8"?>
<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>
    <parent>
        <artifactId>${pub.getCodeName()?lower_case}</artifactId>
        <groupId>${pub.getPKGCodeName()?lower_case}</groupId>
        <version>${pub.getVersionString()?default("V0.0.1_alpha")}</version>
    </parent>

    <artifactId>${pub.getCodeName()?lower_case}-app</artifactId>
    <name>${pub.getCodeName()?lower_case?cap_first} Application</name>
    <description>${pub.getCodeName()?lower_case?cap_first} Application</description>
    <packaging>pom</packaging>

<#--  modules  -->
<#if sys.getAllPSApps()??>
    <modules>
    <#list sys.getAllPSApps() as app>
        <module>${pub.getCodeName()?lower_case}-app-${app.getPKGCodeName()?lower_case}</module>
    </#list>
    </modules>
</#if>

    <dependencies>
        <dependency>
		    <groupId>org.springframework.data</groupId>
			<artifactId>spring-data-commons</artifactId>
		</dependency>

        <#--<dependency>-->
            <#--<groupId>org.springframework.cloud</groupId>-->
            <#--<artifactId>spring-cloud-starter-security</artifactId>-->
            <#--<version>2.1.1.RELEASE</version>-->
        <#--</dependency>-->

        <dependency>
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt</artifactId>
            <version>0.9.1</version>
        </dependency>

        <#--<dependency>-->
            <#--<groupId>org.springframework.security</groupId>-->
            <#--<artifactId>spring-security-cas</artifactId>-->
        <#--</dependency>-->

        <#--<dependency>-->
			<#--<groupId>${pub.getPKGCodeName()?lower_case}</groupId>-->
			<#--<artifactId>${pub.getCodeName()?lower_case}-util</artifactId>-->
			<#--<version>${r'${project.version}'}</version>-->
		<#--</dependency>-->

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
        </dependency>

    </dependencies>

</project>