Skip to content

Commit

Permalink
Added dist/springext project
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Zhou committed Dec 2, 2012
1 parent 58eb97e commit 123eb4f
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 1 deletion.
1 change: 1 addition & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

154 changes: 154 additions & 0 deletions dist/springext/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>citrus-parent</artifactId>
<groupId>com.alibaba.citrus</groupId>
<version>3.1.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>citrus-springext-all</artifactId>
<name>SpringExt All-in-one Bundle</name>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<!-- disabled because shade takes responsibility for building sources jar -->
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<detectOfflineLinks>false</detectOfflineLinks>
<includeDependencySources>true</includeDependencySources>
<dependencySourceIncludes>
<dependencySourceInclude>${project.groupId}:*</dependencySourceInclude>
</dependencySourceIncludes>
<dependencySourceExcludes>
<dependencySourceExclude>*:citrus-common-servlet</dependencySourceExclude>
</dependencySourceExcludes>
<excludePackageNames>com.alibaba.citrus.hessian:com.alibaba.citrus.burlap:freemarker
</excludePackageNames>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<artifactSet>
<includes>
<include>${project.groupId}:*</include>
</includes>
<excludes>
<exclude>*:citrus-common-servlet</exclude>
</excludes>
</artifactSet>
<transformers>
<transformer implementation="com.alibaba.citrus.maven.util.AppendingTransformer">
<patterns>
<pattern>META-INF/*.bean-definition-parsers</pattern>
<pattern>META-INF/*.bean-definition-decorators</pattern>
<pattern>META-INF/*.bean-definition-decorators-for-attribute</pattern>
<pattern>META-INF/spring.configuration-points</pattern>
<pattern>META-INF/spring.handlers</pattern>
<pattern>META-INF/spring.schemas</pattern>
<pattern>META-INF/webx.internal-request-handlers</pattern>
</patterns>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.alibaba.citrus.tool</groupId>
<artifactId>maven-util</artifactId>
<version>${maven-util-version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>citrus-common-servlet</artifactId>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>citrus-common-logconfig</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>citrus-common-util</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>citrus-common-springext</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>citrus-common-generictype</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>citrus-test-util</artifactId>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion dist/webx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>citrus-webx-all</artifactId>
<name>Webx 3.x All-in-one Bundle</name>
<name>Webx All-in-one Bundle</name>
<build>
<plugins>
<plugin>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
</profile>
</profiles>
<modules>
<module>dist/springext</module>
<module>dist/webx</module>
<module>dist/test</module>
<module>common/servlet</module>
Expand Down

0 comments on commit 123eb4f

Please sign in to comment.