-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
131 lines (121 loc) · 5.61 KB
/
pom.xml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?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>
<groupId>org.fenixedu</groupId>
<artifactId>fenix-framework-project</artifactId>
<version>3.0.0-beta1</version>
<relativePath />
</parent>
<artifactId>santander-sdk</artifactId>
<version>DEV-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Santander SDK</name>
<properties>
<version.org.fenixedu.bennu>7.0.0</version.org.fenixedu.bennu>
<version.org.apache.cxf>3.4.0</version.org.apache.cxf>
<version.org.imgscalr.imgscalr-lib>4.2</version.org.imgscalr.imgscalr-lib>
</properties>
<issueManagement>
<system>JIRA</system>
<url>https://jira.fenixedu.org/browse/STDSDK</url>
</issueManagement>
<licenses>
<license>
<name>GNU Lesser General Public License v3.0</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:ist-dsi/santander-sdk.git</connection>
<developerConnection>scm:git:git@github.com:ist-dsi/santander-sdk.git</developerConnection>
<url>http://fenixedu.org</url>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${version.org.apache.cxf}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated-sources/cxf-codegen-plugin</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/webapp/WEB-INF/wsdl/TUIDetailService.wsdl</wsdl>
<extraargs>
<extraarg>-client</extraarg>
<extraarg>-verbose</extraarg>
<extraarg>-p</extraarg>
<extraarg>http://portal.sibscartoes.pt/wcf=pt.sibscartoes.portal.wcf.tui</extraarg>
<extraarg>-p</extraarg>
<extraarg>http://schemas.datacontract.org/2004/07/SibsCards.Wcf.Services.DataContracts=pt.sibscartoes.portal.wcf.tui.dto</extraarg>
<extraarg>-validate</extraarg>
</extraargs>
</wsdlOption>
<wsdlOption>
<wsdl>${basedir}/src/main/webapp/WEB-INF/wsdl/RegisterInfoService.wsdl</wsdl>
<extraargs>
<extraarg>-client</extraarg>
<extraarg>-verbose</extraarg>
<extraarg>-p</extraarg>
<extraarg>http://portal.sibscartoes.pt/wcf=pt.sibscartoes.portal.wcf.register.info</extraarg>
<extraarg>-p</extraarg>
<extraarg>http://schemas.datacontract.org/2004/07/SibsCards.Wcf.Services.DataContracts=pt.sibscartoes.portal.wcf.register.info.dto</extraarg>
<extraarg>-validate</extraarg>
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>bennu-core</artifactId>
<version>${version.org.fenixedu.bennu}</version>
</dependency>
<dependency>
<groupId>org.fenixedu</groupId>
<artifactId>bennu-spring</artifactId>
<version>${version.org.fenixedu.bennu}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${version.org.apache.cxf}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${version.org.apache.cxf}</version>
</dependency>
<dependency>
<groupId>org.imgscalr</groupId>
<artifactId>imgscalr-lib</artifactId>
<version>${version.org.imgscalr.imgscalr-lib}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>fenixedu-maven-repository</id>
<url>https://repo.fenixedu.org/fenixedu-maven-repository</url>
</repository>
</repositories>
</project>