-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added source and javadoc plugins to maven build
- Loading branch information
1 parent
ad479f8
commit 10675cb
Showing
2 changed files
with
89 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,90 @@ | ||
<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> | ||
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> | ||
|
||
<groupId>com.github.Ricston</groupId> | ||
<artifactId>mule-object-store-jdbc</artifactId> | ||
<version>0.1.0</version> | ||
<packaging>jar</packaging> | ||
<groupId>com.github.Ricston</groupId> | ||
<artifactId>mule-object-store-jdbc</artifactId> | ||
<version>0.1.1</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>mule-object-store-jdbc</name> | ||
<url>http://maven.apache.org</url> | ||
<name>mule-object-store-jdbc</name> | ||
<url>http://maven.apache.org</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<mule.version>3.5.0</mule.version> | ||
<maven.compiler.source>1.7</maven.compiler.source> | ||
<maven.compiler.target>1.7</maven.compiler.target> | ||
</properties> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<mule.version>3.5.0</mule.version> | ||
<maven.compiler.source>1.7</maven.compiler.source> | ||
<maven.compiler.target>1.7</maven.compiler.target> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.mule.transports</groupId> | ||
<artifactId>mule-transport-jdbc</artifactId> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.mule.transports</groupId> | ||
<artifactId>mule-transport-jdbc</artifactId> | ||
<version>${mule.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>3.8.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>3.8.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<repositories> | ||
<repository> | ||
<id>Central</id> | ||
<name>Central</name> | ||
<url>http://repo1.maven.org/maven2/</url> | ||
<layout>default</layout> | ||
</repository> | ||
<repository> | ||
<id>mulesoft-releases</id> | ||
<name>MuleSoft Releases Repository</name> | ||
<url>http://repository.mulesoft.org/releases/</url> | ||
<layout>default</layout> | ||
</repository> | ||
<repository> | ||
<id>mulesoft-snapshots</id> | ||
<name>MuleSoft Snapshots Repository</name> | ||
<url>http://repository.mulesoft.org/snapshots/</url> | ||
<layout>default</layout> | ||
</repository> | ||
<repository> | ||
<id>muleforge-releases</id> | ||
<name>MuleForge Snapshot Repository</name> | ||
<url>https://repository-master.mulesoft.org/nexus/content/repositories/releases/</url> | ||
</repository> | ||
</repositories> | ||
<repositories> | ||
<repository> | ||
<id>Central</id> | ||
<name>Central</name> | ||
<url>http://repo1.maven.org/maven2/</url> | ||
<layout>default</layout> | ||
</repository> | ||
<repository> | ||
<id>mulesoft-releases</id> | ||
<name>MuleSoft Releases Repository</name> | ||
<url>http://repository.mulesoft.org/releases/</url> | ||
<layout>default</layout> | ||
</repository> | ||
<repository> | ||
<id>mulesoft-snapshots</id> | ||
<name>MuleSoft Snapshots Repository</name> | ||
<url>http://repository.mulesoft.org/snapshots/</url> | ||
<layout>default</layout> | ||
</repository> | ||
<repository> | ||
<id>muleforge-releases</id> | ||
<name>MuleForge Snapshot Repository</name> | ||
<url>https://repository-master.mulesoft.org/nexus/content/repositories/releases/</url> | ||
</repository> | ||
</repositories> | ||
</project> |