Skip to content

Commit 701e3b0

Browse files
committed
Added Exchange repository. Formatted poms.
1 parent 59b97f3 commit 701e3b0

File tree

47 files changed

+1805
-1483
lines changed
  • adding-a-new-customer-to-workday-revenue-management
  • authenticating-salesforce-using-oauth2
  • cache-scope-with-salesforce-contacts
  • content-based-routing
  • dataweave-2-basics
  • dataweave-with-flowreflookup
  • exposing-a-restful-resource-using-the-HTTP-connector
  • extracting-data-from-LDAP-directory
  • filtering-a-message
  • get-customer-list-from-netsuite
  • hello-world
  • http-multipart-request
  • http-request-response-with-logger
  • implementing-a-choice-exception-strategy
  • import-contacts-asynchronously
  • import-contacts-into-ms-dynamics
  • import-contacts-into-salesforce
  • import-leads-into-salesforce
  • importing-a-CSV-file-into-Mongo-DB
  • importing-an-email-attachment-using-the-IMAP-connector
  • importing-an-email-attachment-using-the-POP3-connector
  • jms-message-rollback-and-redelivery
  • legacy-modernization
  • login-form-using-the-http-connector
  • munit-short-tutorial
  • netsuite-data-retrieval
  • oauth2-authorization-code-using-the-http-connector
  • processing-orders-with-dataweave-and-APIkit
  • proxying-a-rest-api
  • proxying-a-soap-api
  • querying-a-db-and-attaching-results-to-an-email
  • querying-a-mysql-database
  • rest-api-with-apikit
  • retry-mechanism-example
  • salesforce-data-retrieval
  • salesforce-data-synchronization-using-watermarking-and-batch-processing
  • salesforce-to-MySQL-DB-using-Batch-Processing
  • sap-data-retrieval
  • scatter-gather-flow-control
  • sending-a-csv-file-through-email-using-smtp
  • sending-json-data-to-a-jms-queue
  • testing-apikit-with-munit
  • track-a-custom-business-event
  • upload-to-ftp-after-converting-json-to-xml
  • using-transactional-scope-in-jms-to-database
  • web-service-consumer

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1805
-1483
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,32 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
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-
<modelVersion>4.0.0</modelVersion>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
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">
4+
<modelVersion>4.0.0</modelVersion>
45

5-
<parent>
6-
<groupId>org.mule.examples</groupId>
7-
<artifactId>examples-catalog</artifactId>
8-
<version>2.1.2-SNAPSHOT</version>
9-
</parent>
10-
11-
<artifactId>adding-a-new-customer-to-workday-revenue-management</artifactId>
6+
<parent>
7+
<groupId>org.mule.examples</groupId>
8+
<artifactId>examples-catalog</artifactId>
9+
<version>2.1.2-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>adding-a-new-customer-to-workday-revenue-management</artifactId>
1213
<version>2.1.2-SNAPSHOT</version>
1314
<packaging>mule-application</packaging>
1415

15-
<name>adding-a-new-customer-to-workday-revenue-management</name>
16+
<name>adding-a-new-customer-to-workday-revenue-management</name>
1617

1718
<properties>
18-
<workday.connector.version>9.2.0</workday.connector.version>
19-
</properties>
19+
<workday.connector.version>9.2.0</workday.connector.version>
20+
</properties>
2021

21-
<dependencies>
22+
<dependencies>
2223
<dependency>
2324
<groupId>org.mule.connectors</groupId>
2425
<artifactId>mule-http-connector</artifactId>
2526
<version>${http.connector.version}</version>
2627
<classifier>mule-plugin</classifier>
2728
</dependency>
28-
<dependency>
29+
<dependency>
2930
<groupId>com.mulesoft.connectors</groupId>
3031
<artifactId>mule-workday-connector</artifactId>
3132
<version>${workday.connector.version}</version>
@@ -34,11 +35,17 @@
3435
</dependencies>
3536

3637
<repositories>
37-
<repository>
38-
<id>mulesoft-releases</id>
39-
<name>MuleSoft Releases Repository</name>
40-
<url>https://repository.mulesoft.org/releases/</url>
41-
<layout>default</layout>
42-
</repository>
43-
</repositories>
38+
<repository>
39+
<id>anypoint-exchange</id>
40+
<name>Anypoint Exchange</name>
41+
<url>https://maven.anypoint.mulesoft.com/api/v1/maven</url>
42+
<layout>default</layout>
43+
</repository>
44+
<repository>
45+
<id>mulesoft-releases</id>
46+
<name>MuleSoft Releases Repository</name>
47+
<url>https://repository.mulesoft.org/releases/</url>
48+
<layout>default</layout>
49+
</repository>
50+
</repositories>
4451
</project>

authenticating-salesforce-using-oauth2/pom.xml

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
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">
34
<parent>
45
<groupId>org.mule.examples</groupId>
56
<artifactId>examples-catalog</artifactId>
67
<version>2.1.2-SNAPSHOT</version>
78
</parent>
8-
9+
910
<modelVersion>4.0.0</modelVersion>
1011
<artifactId>authenticating-salesforce-using-oauth2</artifactId>
1112
<packaging>mule-application</packaging>
1213
<name>authenticating-salesforce-using-oauth2</name>
13-
14+
1415
<properties>
1516
<mule.connectors.version>1.1.0</mule.connectors.version>
1617
<sfdc.connector.version>9.0.0</sfdc.connector.version>
@@ -44,11 +45,17 @@
4445
</dependencies>
4546

4647
<repositories>
47-
<repository>
48-
<id>mulesoft-releases</id>
49-
<name>MuleSoft Releases Repository</name>
50-
<url>https://repository.mulesoft.org/releases/</url>
51-
<layout>default</layout>
52-
</repository>
53-
</repositories>
48+
<repository>
49+
<id>anypoint-exchange</id>
50+
<name>Anypoint Exchange</name>
51+
<url>https://maven.anypoint.mulesoft.com/api/v1/maven</url>
52+
<layout>default</layout>
53+
</repository>
54+
<repository>
55+
<id>mulesoft-releases</id>
56+
<name>MuleSoft Releases Repository</name>
57+
<url>https://repository.mulesoft.org/releases/</url>
58+
<layout>default</layout>
59+
</repository>
60+
</repositories>
5461
</project>
+50-42
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
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-
<parent>
5-
<groupId>org.mule.examples</groupId>
6-
<artifactId>examples-catalog</artifactId>
7-
<version>2.1.2-SNAPSHOT</version>
8-
</parent>
9-
10-
<modelVersion>4.0.0</modelVersion>
11-
<artifactId>cache-scope-with-salesforce-contacts</artifactId>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
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">
4+
5+
<parent>
6+
<groupId>org.mule.examples</groupId>
7+
<artifactId>examples-catalog</artifactId>
8+
<version>2.1.2-SNAPSHOT</version>
9+
</parent>
10+
11+
<modelVersion>4.0.0</modelVersion>
12+
<artifactId>cache-scope-with-salesforce-contacts</artifactId>
1213
<packaging>mule-application</packaging>
13-
<name>cache-scope-with-salesforce-contacts</name>
14+
<name>cache-scope-with-salesforce-contacts</name>
1415

1516
<properties>
16-
<sfdc.connector.version>9.0.0</sfdc.connector.version>
17-
<munit.version>2.1.2</munit.version>
18-
</properties>
17+
<sfdc.connector.version>9.0.0</sfdc.connector.version>
18+
<munit.version>2.1.2</munit.version>
19+
</properties>
1920

20-
<build>
21-
<plugins>
22-
<plugin>
21+
<build>
22+
<plugins>
23+
<plugin>
2324
<groupId>com.mulesoft.munit.tools</groupId>
2425
<artifactId>munit-maven-plugin</artifactId>
2526
<version>${munit.version}</version>
@@ -43,40 +44,41 @@
4344
</configuration>
4445
</plugin>
4546
</plugins>
46-
</build>
47+
</build>
4748

48-
<dependencies>
49-
<dependency>
50-
<groupId>org.mule.connectors</groupId>
51-
<artifactId>mule-http-connector</artifactId>
52-
<version>${http.connector.version}</version>
53-
<classifier>mule-plugin</classifier>
54-
</dependency>
55-
<dependency>
56-
<groupId>org.mule.connectors</groupId>
57-
<artifactId>mule-sockets-connector</artifactId>
58-
<version>${sockets.connector.version}</version>
59-
<classifier>mule-plugin</classifier>
60-
</dependency>
61-
<dependency>
49+
<dependencies>
50+
<dependency>
51+
<groupId>org.mule.connectors</groupId>
52+
<artifactId>mule-http-connector</artifactId>
53+
<version>${http.connector.version}</version>
54+
<classifier>mule-plugin</classifier>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.mule.connectors</groupId>
58+
<artifactId>mule-sockets-connector</artifactId>
59+
<version>${sockets.connector.version}</version>
60+
<classifier>mule-plugin</classifier>
61+
</dependency>
62+
<dependency>
6263
<groupId>org.mule.connectors</groupId>
6364
<artifactId>mule-objectstore-connector</artifactId>
6465
<version>${objectstore.connector.version}</version>
6566
<classifier>mule-plugin</classifier>
6667
</dependency>
67-
<dependency>
68+
<dependency>
6869
<groupId>org.mule.connectors</groupId>
6970
<artifactId>mule-sfdc-connector</artifactId>
7071
<version>${sfdc.connector.version}</version>
7172
<classifier>mule-plugin</classifier>
7273
</dependency>
73-
<dependency>
74+
<dependency>
7475
<groupId>com.mulesoft.munit</groupId>
7576
<artifactId>munit-runner</artifactId>
7677
<version>${munit.version}</version>
7778
<classifier>mule-plugin</classifier>
7879
<scope>test</scope>
79-
</dependency> <dependency>
80+
</dependency>
81+
<dependency>
8082
<groupId>com.mulesoft.munit</groupId>
8183
<artifactId>munit-tools</artifactId>
8284
<version>${munit.version}</version>
@@ -86,11 +88,17 @@
8688
</dependencies>
8789

8890
<repositories>
89-
<repository>
90-
<id>mulesoft-releases</id>
91-
<name>MuleSoft Releases Repository</name>
92-
<url>https://repository.mulesoft.org/releases/</url>
93-
<layout>default</layout>
94-
</repository>
95-
</repositories>
91+
<repository>
92+
<id>anypoint-exchange</id>
93+
<name>Anypoint Exchange</name>
94+
<url>https://maven.anypoint.mulesoft.com/api/v1/maven</url>
95+
<layout>default</layout>
96+
</repository>
97+
<repository>
98+
<id>mulesoft-releases</id>
99+
<name>MuleSoft Releases Repository</name>
100+
<url>https://repository.mulesoft.org/releases/</url>
101+
<layout>default</layout>
102+
</repository>
103+
</repositories>
96104
</project>

content-based-routing/pom.xml

+41-34
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
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-
<parent>
4-
<groupId>org.mule.examples</groupId>
5-
<artifactId>examples-catalog</artifactId>
6-
<version>2.1.2-SNAPSHOT</version>
7-
</parent>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
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">
4+
<parent>
5+
<groupId>org.mule.examples</groupId>
6+
<artifactId>examples-catalog</artifactId>
7+
<version>2.1.2-SNAPSHOT</version>
8+
</parent>
89

9-
<modelVersion>4.0.0</modelVersion>
10-
<artifactId>content-based-routing</artifactId>
11-
<packaging>mule-application</packaging>
12-
<name>content-based-routing</name>
10+
<modelVersion>4.0.0</modelVersion>
11+
<artifactId>content-based-routing</artifactId>
12+
<packaging>mule-application</packaging>
13+
<name>content-based-routing</name>
1314

14-
<properties>
15-
<mule.connectors.version>1.1.0</mule.connectors.version>
16-
<munit.version>2.1.2</munit.version>
15+
<properties>
16+
<mule.connectors.version>1.1.0</mule.connectors.version>
17+
<munit.version>2.1.2</munit.version>
1718
</properties>
1819

19-
<build>
20-
<plugins>
21-
<plugin>
20+
<build>
21+
<plugins>
22+
<plugin>
2223
<groupId>com.mulesoft.munit.tools</groupId>
2324
<artifactId>munit-maven-plugin</artifactId>
2425
<version>${munit.version}</version>
@@ -42,22 +43,22 @@
4243
</configuration>
4344
</plugin>
4445
</plugins>
45-
</build>
46-
47-
<dependencies>
48-
<dependency>
49-
<groupId>org.mule.connectors</groupId>
50-
<artifactId>mule-http-connector</artifactId>
51-
<version>${http.connector.version}</version>
52-
<classifier>mule-plugin</classifier>
53-
</dependency>
54-
<dependency>
46+
</build>
47+
48+
<dependencies>
49+
<dependency>
50+
<groupId>org.mule.connectors</groupId>
51+
<artifactId>mule-http-connector</artifactId>
52+
<version>${http.connector.version}</version>
53+
<classifier>mule-plugin</classifier>
54+
</dependency>
55+
<dependency>
5556
<groupId>com.mulesoft.munit</groupId>
5657
<artifactId>munit-runner</artifactId>
5758
<version>${munit.version}</version>
5859
<classifier>mule-plugin</classifier>
5960
<scope>test</scope>
60-
</dependency>
61+
</dependency>
6162
<dependency>
6263
<groupId>com.mulesoft.munit</groupId>
6364
<artifactId>munit-tools</artifactId>
@@ -67,11 +68,17 @@
6768
</dependency>
6869
</dependencies>
6970
<repositories>
70-
<repository>
71-
<id>mulesoft-releases</id>
72-
<name>MuleSoft Releases Repository</name>
73-
<url>https://repository.mulesoft.org/releases/</url>
74-
<layout>default</layout>
75-
</repository>
76-
</repositories>
71+
<repository>
72+
<id>anypoint-exchange</id>
73+
<name>Anypoint Exchange</name>
74+
<url>https://maven.anypoint.mulesoft.com/api/v1/maven</url>
75+
<layout>default</layout>
76+
</repository>
77+
<repository>
78+
<id>mulesoft-releases</id>
79+
<name>MuleSoft Releases Repository</name>
80+
<url>https://repository.mulesoft.org/releases/</url>
81+
<layout>default</layout>
82+
</repository>
83+
</repositories>
7784
</project>

dataweave-2-basics/pom.xml

+16-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
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">
34
<parent>
45
<groupId>org.mule.examples</groupId>
56
<artifactId>examples-catalog</artifactId>
@@ -84,12 +85,18 @@
8485
<scope>test</scope>
8586
</dependency>
8687
</dependencies>
87-
<repositories>
88-
<repository>
89-
<id>mulesoft-releases</id>
90-
<name>MuleSoft Releases Repository</name>
91-
<url>https://repository.mulesoft.org/releases/</url>
92-
<layout>default</layout>
93-
</repository>
94-
</repositories>
88+
<repositories>
89+
<repository>
90+
<id>anypoint-exchange</id>
91+
<name>Anypoint Exchange</name>
92+
<url>https://maven.anypoint.mulesoft.com/api/v1/maven</url>
93+
<layout>default</layout>
94+
</repository>
95+
<repository>
96+
<id>mulesoft-releases</id>
97+
<name>MuleSoft Releases Repository</name>
98+
<url>https://repository.mulesoft.org/releases/</url>
99+
<layout>default</layout>
100+
</repository>
101+
</repositories>
95102
</project>

0 commit comments

Comments
 (0)