Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

When building the sample using the source ensure you update pom.xml with the online repository. To do this, add the following section before <dependencies> tag in pom.xml:

Code Block
languagexml
<repositories>
	   <repository>
	      <id>wso2-nexus</id>
	      <name>WSO2 internal Repository</name>
	      <url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url>
	      <releases>
		  <enabled>true</enabled>
		  <updatePolicy>daily</updatePolicy>
		  <checksumPolicy>ignore</checksumPolicy>
	      </releases>
	   </repository>
	   <repository>
	      <id>wso2-maven2-repository</id>
	      <name>WSO2 Maven2 Repository</name>
	      <url>http://dist.wso2.org/maven2</url>
	   <snapshots>
	   <snapshots> 		 <enabled>false</enabled>
	      </snapshots>
	      <releases>
		 <enabled>true</enabled>
		 <updatePolicy>never</updatePolicy>
		 <checksumPolicy>fail</checksumPolicy>
	      </releases>
	   </repository>repository
	</repositories>


Alternatively, you can download the JAR file from the following location, copy it to the repository/component/lib directory, and restart the ESB:

...