-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
122 lines (108 loc) · 4.02 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>af871948-2dd2-4f4c-8bbd-f6a997cd48d7</groupId>
<artifactId>dw-module-jwt</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>dw-module-jwt</name>
<properties>
<weave.version>2.4.0-SNAPSHOT</weave.version>
</properties>
<distributionManagement>
<repository>
<id>exchange-repository</id>
<url>https://maven.anypoint.mulesoft.com/api/v2/organizations/af871948-2dd2-4f4c-8bbd-f6a997cd48d7/maven</url>
<layout>default</layout>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>runtime</artifactId>
<version>${weave.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>core-modules</artifactId>
<version>${weave.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>java-module</artifactId>
<version>${weave.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.weave</groupId>
<artifactId>wtf</artifactId>
<version>1.0.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>src/test/dwmit</directory>
</testResource>
<testResource>
<directory>src/test/dwit</directory>
</testResource>
<testResource>
<directory>src/test/resources</directory>
</testResource>
<testResource>
<directory>src/test/dwtest</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.mule.weave</groupId>
<artifactId>weave-maven-plugin</artifactId>
<version>2.4.0-SNAPSHOT</version>
<configuration>
<logForkedProcessCommand>true</logForkedProcessCommand>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>mule-releases</id>
<url>https://repository-master.mulesoft.org/nexus/content/repositories/releases</url>
</repository>
<repository>
<id>mule-snapshots</id>
<url>https://repository-master.mulesoft.org/nexus/content/repositories/snapshots</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>mule-releases</id>
<url>https://repository-master.mulesoft.org/nexus/content/repositories/releases</url>
</pluginRepository>
<pluginRepository>
<id>mule-snapshots</id>
<url>https://repository-master.mulesoft.org/nexus/content/repositories/snapshots</url>
</pluginRepository>
</pluginRepositories>
</project>