|
1 | 1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> |
2 | 2 | <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"> |
3 | | - |
4 | 3 | <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>org.mulesoft</groupId> |
6 | | - <artifactId>net-tools</artifactId> |
7 | | - <version>1.0.0-SNAPSHOT</version> |
8 | | - <packaging>mule</packaging> |
9 | | - <name>Mule net-tools Application</name> |
10 | 4 |
|
11 | | - <properties> |
| 5 | + <groupId>com.mycompany</groupId> |
| 6 | + <artifactId>net-tools-api</artifactId> |
| 7 | + <version>2.0.0-SNAPSHOT</version> |
| 8 | + <packaging>mule-application</packaging> |
| 9 | + |
| 10 | + <name>net-tools-api</name> |
| 11 | + |
| 12 | + <properties> |
12 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
13 | 14 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
14 | 15 |
|
15 | | - <mule.version>3.9.1</mule.version> |
16 | | - <mule.tools.version>1.2</mule.tools.version> |
| 16 | + <app.runtime>4.1.3</app.runtime> |
| 17 | + <mule.maven.plugin.version>3.1.6</mule.maven.plugin.version> |
17 | 18 | </properties> |
18 | 19 |
|
19 | 20 | <build> |
20 | 21 | <plugins> |
21 | 22 | <plugin> |
22 | 23 | <groupId>org.mule.tools.maven</groupId> |
23 | | - <artifactId>mule-app-maven-plugin</artifactId> |
24 | | - <version>${mule.tools.version}</version> |
| 24 | + <artifactId>mule-maven-plugin</artifactId> |
| 25 | + <version>${mule.maven.plugin.version}</version> |
25 | 26 | <extensions>true</extensions> |
26 | 27 | <configuration> |
27 | | - <copyToAppsDirectory>true</copyToAppsDirectory> |
28 | | - </configuration> |
29 | | - </plugin> |
30 | | - <plugin> |
31 | | - <groupId>org.codehaus.mojo</groupId> |
32 | | - <artifactId>build-helper-maven-plugin</artifactId> |
33 | | - <version>1.7</version> |
34 | | - <executions> |
35 | | - <execution> |
36 | | - <id>add-resource</id> |
37 | | - <phase>generate-resources</phase> |
38 | | - <goals> |
39 | | - <goal>add-resource</goal> |
40 | | - </goals> |
41 | | - <configuration> |
42 | | - <resources> |
43 | | - <resource> |
44 | | - <directory>src/main/app/</directory> |
45 | | - </resource> |
46 | | - <resource> |
47 | | - <directory>src/main/api/</directory> |
48 | | - </resource> |
49 | | - <resource> |
50 | | - <directory>mappings/</directory> |
51 | | - </resource> |
52 | | - </resources> |
53 | | - </configuration> |
54 | | - </execution> |
55 | | - </executions> |
| 28 | + <sharedLibraries> |
| 29 | + <sharedLibrary> |
| 30 | + <groupId>org.springframework</groupId> |
| 31 | + <artifactId>spring-context</artifactId> |
| 32 | + </sharedLibrary> |
| 33 | + <sharedLibrary> |
| 34 | + <groupId>org.springframework.security</groupId> |
| 35 | + <artifactId>spring-security-core</artifactId> |
| 36 | + </sharedLibrary> |
| 37 | + <sharedLibrary> |
| 38 | + <groupId>org.springframework</groupId> |
| 39 | + <artifactId>spring-beans</artifactId> |
| 40 | + </sharedLibrary> |
| 41 | + <sharedLibrary> |
| 42 | + <groupId>org.springframework.security</groupId> |
| 43 | + <artifactId>spring-security-config</artifactId> |
| 44 | + </sharedLibrary> |
| 45 | + <sharedLibrary> |
| 46 | + <groupId>org.springframework</groupId> |
| 47 | + <artifactId>spring-core</artifactId> |
| 48 | + </sharedLibrary> |
| 49 | + </sharedLibraries> |
| 50 | + <classifier>mule-application</classifier> |
| 51 | + </configuration> |
56 | 52 | </plugin> |
57 | 53 | </plugins> |
58 | 54 | </build> |
59 | 55 |
|
60 | | - <!-- Mule Dependencies --> |
61 | 56 | <dependencies> |
62 | | - <!-- Xml configuration --> |
63 | 57 | <dependency> |
64 | | - <groupId>com.mulesoft.muleesb</groupId> |
65 | | - <artifactId>mule-core-ee</artifactId> |
66 | | - <version>${mule.version}</version> |
67 | | - <scope>provided</scope> |
| 58 | + <groupId>org.mule.connectors</groupId> |
| 59 | + <artifactId>mule-http-connector</artifactId> |
| 60 | + <version>1.3.1</version> |
| 61 | + <classifier>mule-plugin</classifier> |
68 | 62 | </dependency> |
69 | | - <!-- Xml configuration --> |
70 | 63 | <dependency> |
71 | | - <groupId>com.mulesoft.muleesb.modules</groupId> |
72 | | - <artifactId>mule-module-spring-config-ee</artifactId> |
73 | | - <version>${mule.version}</version> |
74 | | - <scope>provided</scope> |
| 64 | + <groupId>org.mule.connectors</groupId> |
| 65 | + <artifactId>mule-sockets-connector</artifactId> |
| 66 | + <version>1.1.1</version> |
| 67 | + <classifier>mule-plugin</classifier> |
75 | 68 | </dependency> |
76 | | - <!-- Mule Transports --> |
77 | 69 | <dependency> |
78 | | - <groupId>org.mule.transports</groupId> |
79 | | - <artifactId>mule-transport-file</artifactId> |
80 | | - <version>${mule.version}</version> |
81 | | - <scope>provided</scope> |
| 70 | + <groupId>org.mule.modules</groupId> |
| 71 | + <artifactId>mule-apikit-module</artifactId> |
| 72 | + <version>1.1.7</version> |
| 73 | + <classifier>mule-plugin</classifier> |
82 | 74 | </dependency> |
83 | 75 | <dependency> |
84 | | - <groupId>org.mule.transports</groupId> |
85 | | - <artifactId>mule-transport-http</artifactId> |
86 | | - <version>${mule.version}</version> |
87 | | - <scope>provided</scope> |
| 76 | + <groupId>org.mule.modules</groupId> |
| 77 | + <artifactId>mule-spring-module</artifactId> |
| 78 | + <version>1.2.0</version> |
| 79 | + <classifier>mule-plugin</classifier> |
88 | 80 | </dependency> |
89 | 81 | <dependency> |
90 | | - <groupId>com.mulesoft.muleesb.transports</groupId> |
91 | | - <artifactId>mule-transport-jdbc-ee</artifactId> |
92 | | - <version>${mule.version}</version> |
93 | | - <scope>provided</scope> |
| 82 | + <groupId>org.springframework</groupId> |
| 83 | + <artifactId>spring-context</artifactId> |
| 84 | + <version>4.3.17.RELEASE</version> |
94 | 85 | </dependency> |
95 | 86 | <dependency> |
96 | | - <groupId>com.mulesoft.muleesb.transports</groupId> |
97 | | - <artifactId>mule-transport-jms-ee</artifactId> |
98 | | - <version>${mule.version}</version> |
99 | | - <scope>provided</scope> |
| 87 | + <groupId>org.springframework.security</groupId> |
| 88 | + <artifactId>spring-security-core</artifactId> |
| 89 | + <version>4.2.6.RELEASE</version> |
100 | 90 | </dependency> |
101 | 91 | <dependency> |
102 | | - <groupId>org.mule.transports</groupId> |
103 | | - <artifactId>mule-transport-vm</artifactId> |
104 | | - <version>${mule.version}</version> |
105 | | - <scope>provided</scope> |
| 92 | + <groupId>org.springframework</groupId> |
| 93 | + <artifactId>spring-beans</artifactId> |
| 94 | + <version>4.3.17.RELEASE</version> |
106 | 95 | </dependency> |
107 | | - <!-- Mule Modules --> |
108 | 96 | <dependency> |
109 | | - <groupId>org.mule.modules</groupId> |
110 | | - <artifactId>mule-module-scripting</artifactId> |
111 | | - <version>${mule.version}</version> |
112 | | - <scope>provided</scope> |
| 97 | + <groupId>org.springframework.security</groupId> |
| 98 | + <artifactId>spring-security-config</artifactId> |
| 99 | + <version>4.2.6.RELEASE</version> |
113 | 100 | </dependency> |
114 | 101 | <dependency> |
115 | | - <groupId>org.mule.modules</groupId> |
116 | | - <artifactId>mule-module-xml</artifactId> |
117 | | - <version>${mule.version}</version> |
118 | | - <scope>provided</scope> |
| 102 | + <groupId>org.springframework</groupId> |
| 103 | + <artifactId>spring-core</artifactId> |
| 104 | + <version>4.3.17.RELEASE</version> |
119 | 105 | </dependency> |
120 | | - <!-- for testing --> |
121 | 106 | <dependency> |
122 | | - <groupId>org.mule.tests</groupId> |
123 | | - <artifactId>mule-tests-functional</artifactId> |
124 | | - <version>${mule.version}</version> |
125 | | - <scope>test</scope> |
| 107 | + <groupId>org.mule.modules</groupId> |
| 108 | + <artifactId>mule-scripting-module</artifactId> |
| 109 | + <version>1.1.1</version> |
| 110 | + <classifier>mule-plugin</classifier> |
126 | 111 | </dependency> |
127 | | - <dependency> |
128 | | - <groupId>org.mule.modules</groupId> |
129 | | - <artifactId>mule-module-apikit</artifactId> |
130 | | - <version>${mule.version}</version> |
131 | | - <scope>provided</scope> |
132 | | - </dependency> |
133 | | - |
134 | 112 | <dependency> |
135 | | - <groupId>commons-net</groupId> |
136 | | - <artifactId>commons-net</artifactId> |
137 | | - <version>3.5</version> |
138 | | - </dependency> |
139 | | - </dependencies> |
| 113 | + <groupId>org.mule.module</groupId> |
| 114 | + <artifactId>mule-java-module</artifactId> |
| 115 | + <version>1.1.1</version> |
| 116 | + <classifier>mule-plugin</classifier> |
| 117 | + </dependency> |
| 118 | + </dependencies> |
140 | 119 |
|
141 | 120 | <repositories> |
142 | | - <repository> |
143 | | - <id>Central</id> |
144 | | - <name>Central</name> |
145 | | - <url>http://repo1.maven.org/maven2/</url> |
146 | | - <layout>default</layout> |
147 | | - </repository> |
148 | | - <repository> |
149 | | - <id>mulesoft-releases</id> |
150 | | - <name>MuleSoft Releases Repository</name> |
151 | | - <url>http://repository.mulesoft.org/releases/</url> |
152 | | - <layout>default</layout> |
153 | | - </repository> |
154 | | - </repositories> |
155 | | - <pluginRepositories> |
156 | | - <pluginRepository> |
157 | | - <id>mulesoft-release</id> |
158 | | - <name>mulesoft release repository</name> |
159 | | - <layout>default</layout> |
160 | | - <url>http://repository.mulesoft.org/releases/</url> |
161 | | - <snapshots> |
162 | | - <enabled>false</enabled> |
163 | | - </snapshots> |
164 | | - </pluginRepository> |
165 | | - </pluginRepositories> |
| 121 | + <repository> |
| 122 | + <id>anypoint-exchange</id> |
| 123 | + <name>Anypoint Exchange</name> |
| 124 | + <url>https://maven.anypoint.mulesoft.com/api/v1/maven</url> |
| 125 | + <layout>default</layout> |
| 126 | + </repository> |
| 127 | + <repository> |
| 128 | + <id>mulesoft-releases</id> |
| 129 | + <name>MuleSoft Releases Repository</name> |
| 130 | + <url>https://repository.mulesoft.org/releases/</url> |
| 131 | + <layout>default</layout> |
| 132 | + </repository> |
| 133 | + </repositories> |
| 134 | + <pluginRepositories> |
| 135 | + <pluginRepository> |
| 136 | + <id>mulesoft-releases</id> |
| 137 | + <name>mulesoft release repository</name> |
| 138 | + <layout>default</layout> |
| 139 | + <url>https://repository.mulesoft.org/releases/</url> |
| 140 | + <snapshots> |
| 141 | + <enabled>false</enabled> |
| 142 | + </snapshots> |
| 143 | + </pluginRepository> |
| 144 | + </pluginRepositories> |
166 | 145 |
|
167 | 146 | </project> |
0 commit comments