spring-flex 1.5.2release pom.xml

12 篇文章 0 订阅


<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>  
    <groupId>test</groupId>  
    <artifactId>test</artifactId>  
    <version>0.0.1-SNAPSHOT</version>  
    <properties>  
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
        <spring.framework.version>3.0.5.RELEASE</spring.framework.version>  
    </properties>  
  
    <repositories>  
        <repository>  
            <id>repository-jboss</id>  
            <name>repository jboss(replace defautl repository)</name>  
            <url>https://repository.jboss.org/</url>  
            <releases>  
                <enabled>true</enabled>  
            </releases>  
            <snapshots>  
                <enabled>false</enabled>  
            </snapshots>  
        </repository>
        <!--  如下repository,或设置其他的repository,下载下来的jar包,总是缺少flex-messaging-opt.jar,所以还是自行下载吧。。。  -->  
        <repository>  
            <id>repository-jspresso</id>  
            <name>repository jspresso(for blazeds)</name>  
            <url>http://repository.jspresso.org/maven2/</url>  
            <releases>  
                <enabled>true</enabled>  
            </releases>  
            <snapshots>  
                <enabled>false</enabled>  
            </snapshots>  
        </repository>
        
    </repositories>  
  
    <dependencies>  
        <!-- spring -->  
        <dependency>  
            <groupId>org.springframework.flex</groupId>  
            <artifactId>spring-flex-core</artifactId>  
            <version>1.5.2.RELEASE</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-tx</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-aop</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-aspects</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-beans</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-context</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-core</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-jdbc</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-expression</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-test</artifactId>  
            <version>${spring.framework.version}</version>  
            <scope>test</scope>  
        </dependency>  
  
        <dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-orm</artifactId>  
            <version>${spring.framework.version}</version>  
            <scope>test</scope>  
        </dependency>  
        
        <dependency>
		  <groupId>org.springframework</groupId>
		  <artifactId>spring-jms</artifactId>
		  <version>${spring.framework.version}</version>
		</dependency>
  
        <dependency>  
            <groupId>org.springframework.integration</groupId>  
            <artifactId>spring-integration-core</artifactId>  
            <version>2.0.3.RELEASE</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.springframework.security</groupId>  
            <artifactId>spring-security-config</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.security</groupId>  
            <artifactId>spring-security-core</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.security</groupId>  
            <artifactId>spring-security-web</artifactId>  
            <version>${spring.framework.version}</version>  
        </dependency>  
        <!-- ###################################### -->  
        <dependency>  
            <groupId>xalan</groupId>  
            <artifactId>serializer</artifactId>  
            <version>2.7.1</version>  
        </dependency>  
        <dependency>  
            <groupId>xalan</groupId>  
            <artifactId>xalan</artifactId>  
            <version>2.7.1</version>  
        </dependency>  
        <dependency>  
            <groupId>xml-apis</groupId>  
            <artifactId>xml-apis</artifactId>  
            <version>1.3.04</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.slf4j</groupId>  
            <artifactId>slf4j-api</artifactId>  
            <version>1.6.1</version>  
        </dependency>  
        <dependency>  
            <groupId>org.slf4j</groupId>  
            <artifactId>slf4j-log4j12</artifactId>  
            <version>1.6.1</version>  
        </dependency>  
        <dependency>  
            <groupId>org.mockito</groupId>  
            <artifactId>mockito-all</artifactId>  
            <version>1.8.2</version>  
        </dependency>  
        <dependency>  
            <groupId>org.codehaus.jackson</groupId>  
            <artifactId>jackson-core-asl</artifactId>  
            <version>1.0.0</version>  
        </dependency>  
        <dependency>  
            <groupId>org.aspectj</groupId>  
            <artifactId>aspectjrt</artifactId>  
            <version>1.6.3</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.aspectj</groupId>  
            <artifactId>aspectjweaver</artifactId>  
            <version>1.6.8</version>  
        </dependency>  
        <dependency>  
            <groupId>org.apache.geronimo.specs</groupId>  
            <artifactId>geronimo-jms_1.1_spec</artifactId>  
            <version>1.1.1</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.apache.geronimo.specs</groupId>  
            <artifactId>geronimo-j2ee-management_1.0_spec</artifactId>  
            <version>1.0</version>  
        </dependency>  
        <dependency>  
            <groupId>javax.transaction</groupId>  
            <artifactId>jta</artifactId>  
            <version>1.1</version>  
        </dependency>  
        <dependency>  
            <groupId>org.apache.activemq</groupId>  
            <artifactId>activeio-core</artifactId>  
            <version>3.1.0</version>  
        </dependency>  
        <dependency>  
            <groupId>org.apache.activemq</groupId>  
            <artifactId>activeio-core</artifactId>  
            <version>3.1.0</version>  
            <classifier>tests</classifier>  
        </dependency>  
        <dependency>  
            <groupId>org.apache.activemq</groupId>  
            <artifactId>activemq-core</artifactId>  
            <version>5.1.0</version>  
        </dependency>  
        <dependency>  
            <groupId>javax.jms</groupId>  
            <artifactId>jms</artifactId>  
            <version>1.1</version>  
        </dependency>  
        <dependency>  
            <groupId>javax.servlet</groupId>  
            <artifactId>servlet-api</artifactId>  
            <version>2.5</version>  
        </dependency>  
        <dependency>  
            <groupId>javax.annotation</groupId>  
            <artifactId>jsr250-api</artifactId>  
            <version>1.0</version>  
        </dependency>  
  
        <dependency>  
            <groupId>javassist</groupId>  
            <artifactId>javassist</artifactId>  
            <version>3.12.0.GA</version>  
        </dependency>  
        <dependency>  
            <groupId>cglib</groupId>  
            <artifactId>cglib</artifactId>  
            <version>2.2</version>  
        </dependency>  
  
        <dependency>  
            <groupId>backport-util-concurrent</groupId>  
            <artifactId>backport-util-concurrent</artifactId>  
            <version>2.1</version>  
        </dependency>  
        <dependency>  
            <groupId>asm</groupId>  
            <artifactId>asm</artifactId>  
            <version>3.1</version>  
        </dependency>  
  
        <dependency>  
            <groupId>org.hibernate</groupId>  
            <artifactId>hibernate-core</artifactId>  
            <version>3.6.4.Final</version>  
        </dependency>  
        <dependency>  
            <groupId>org.hibernate</groupId>  
            <artifactId>hibernate-entitymanager</artifactId>  
            <version>3.6.4.Final</version>  
        </dependency>  
        <dependency>  
            <groupId>mysql</groupId>  
            <artifactId>mysql-connector-java</artifactId>  
            <version>5.1.33</version>  
        </dependency>  
  
        <dependency>  
            <groupId>log4j</groupId>  
            <artifactId>log4j</artifactId>  
            <version>1.2.16</version>  
        </dependency>  
  
        <dependency>  
            <groupId>c3p0</groupId>  
            <artifactId>c3p0</artifactId>  
            <version>0.9.1.2</version>  
        </dependency>  
        
        <dependency>
		  <groupId>com.h2database</groupId>
		  <artifactId>h2</artifactId>
		  <version>1.4.185</version>
		</dependency>
        
    </dependencies>  

<dependency>
<span style="white-space:pre">		</span>  <groupId>jstl</groupId>
<span style="white-space:pre">		</span>  <artifactId>jstl</artifactId>
<span style="white-space:pre">		</span>  <version>1.1.2</version>
<span style="white-space:pre">		</span></dependency>
<span style="white-space:pre">		</span>
<span style="white-space:pre">		</span><dependency>
<span style="white-space:pre">			</span><groupId>taglibs</groupId>
<span style="white-space:pre">			</span><artifactId>standard</artifactId>
<span style="white-space:pre">			</span><version>1.1.2</version>
<span style="white-space:pre">		</span></dependency>


</project>  






below is from http://docs.spring.io/spring-flex/docs/1.5.2.RELEASE/readme.txt 

SPRING BLAZEDS INTEGRATION 1.5.2.RELEASE (November 2011)
----------------------------------
http://www.springsource.org/spring-flex

1. INTRODUCTION
---------------
Spring BlazeDS Integration is a top-level Spring project, and a component of the complete Spring Web stack.  The project's purpose is to make it easier to build Spring-powered 
Rich Internet Applications using Adobe Flex as the front-end client.  It aims to achieve this purpose by providing first-class support for using the open source Adobe BlazeDS 
project and its powerful remoting and messaging facilities in combination with the familiar Spring programming model.

2. RELEASE NOTES
----------------
Spring BlazeDS Integration requires Java SE 5.0, Spring Framework 3.0.0, and Adobe BlazeDS 4.0.0 or above to run.

Java SE 5 with Maven 2.2.0 or above is required to build.

Release distribution contents:

"." contains the Spring BlazeDS Integration distribution readme, license, changelog, and copyright
"dist" contains the Spring BlazeDS Integration distribution jar files
"src" contains the Spring BlazeDS Integration distribution source jar files
"docs" contains the Spring BlazeDS Integration reference manual and API Javadocs
"projects" contains buildable source projects for the individual components
"samples" contains buildable sample applications

Spring BlazeDS Integration is released under the terms of the Apache Software License (see license.txt).

3. DISTRIBUTION JAR FILES
-------------------------
The following jar files are included in the distribution.
The contents of each jar and its dependencies are noted.
Dependencies in [brackets] are optional, and are just necessary for certain functionality.

* spring-flex-core-1.5.1.RELEASE.jar
- Contents: The Spring BlazeDS Integration core library, containing Spring's integration for Adobe BlazeDS.
- Runtime Dependencies ([] indicates optional) : Spring Core, Spring MVC, BlazeDS, Commons Logging and HttpClient, CGLib, Backport of javax.util.concurrent, 
[Spring Security], [Spring Integration], [Spring JMS], [Jackson]    

For an exact list of project dependencies including version numbers, refer to the following output from the Maven Dependency Plugin as of the release 
(this lists *all* dependencies, including those that are transitive, optional, and provided):

[INFO] ------------------------------------------------------------------------
[INFO] Building Spring BlazeDS Integration Core
[INFO]    task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO] 
[INFO] The following files have been resolved:
[INFO]    antlr:antlr:jar:2.7.6:compile
[INFO]    aopalliance:aopalliance:jar:1.0:compile
[INFO]    asm:asm:jar:3.1:compile
[INFO]    backport-util-concurrent:backport-util-concurrent:jar:2.1:test
[INFO]    cglib:cglib:jar:2.2:compile
[INFO]    cglib:cglib-nodep:jar:2.1_3:compile
[INFO]    com.adobe.blazeds:blazeds-common:jar:4.0.0.14931:compile
[INFO]    com.adobe.blazeds:blazeds-core:jar:4.0.0.14931:compile
[INFO]    com.adobe.blazeds:blazeds-proxy:jar:4.0.0.14931:compile
[INFO]    com.adobe.blazeds:blazeds-remoting:jar:4.0.0.14931:compile
[INFO]    com.h2database:h2:jar:1.0.71:test
[INFO]    commons-codec:commons-codec:jar:1.2:compile
[INFO]    commons-collections:commons-collections:jar:3.1:compile
[INFO]    commons-httpclient:commons-httpclient:jar:3.1:compile
[INFO]    commons-logging:commons-logging:jar:1.1.1:compile
[INFO]    dom4j:dom4j:jar:1.6.1:compile
[INFO]    javassist:javassist:jar:3.12.0.GA:compile
[INFO]    javax.annotation:jsr250-api:jar:1.0:provided
[INFO]    javax.jms:jms:jar:1.1:provided
[INFO]    javax.servlet:servlet-api:jar:2.5:provided
[INFO]    javax.transaction:jta:jar:1.1:compile
[INFO]    junit:junit:jar:4.7:test
[INFO]    log4j:log4j:jar:1.2.16:test
[INFO]    org.apache.activemq:activeio-core:jar:3.1.0:test
[INFO]    org.apache.activemq:activeio-core:test-jar:tests:3.1.0:test
[INFO]    org.apache.activemq:activemq-core:jar:5.1.0:test
[INFO]    org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec:jar:1.0:test
[INFO]    org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:test
[INFO]    org.aspectj:aspectjrt:jar:1.6.3:compile
[INFO]    org.aspectj:aspectjweaver:jar:1.6.8:compile
[INFO]    org.codehaus.jackson:jackson-core-asl:jar:1.0.0:compile
[INFO]    org.hibernate:hibernate-commons-annotations:jar:3.2.0.Final:compile
[INFO]    org.hibernate:hibernate-core:jar:3.6.4.Final:compile
[INFO]    org.hibernate:hibernate-entitymanager:jar:3.6.4.Final:compile
[INFO]    org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.0.Final:compile
[INFO]    org.mockito:mockito-all:jar:1.8.2:test
[INFO]    org.slf4j:slf4j-api:jar:1.6.1:compile
[INFO]    org.slf4j:slf4j-log4j12:jar:1.6.1:test
[INFO]    org.springframework:spring-aop:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-asm:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-beans:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-context:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-context-support:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-core:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-expression:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-jdbc:jar:3.0.5.RELEASE:test
[INFO]    org.springframework:spring-jms:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-orm:jar:3.0.5.RELEASE:test
[INFO]    org.springframework:spring-test:jar:3.0.5.RELEASE:test
[INFO]    org.springframework:spring-tx:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-web:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework:spring-webmvc:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework.integration:spring-integration-core:jar:2.0.3.RELEASE:compile
[INFO]    org.springframework.security:spring-security-config:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework.security:spring-security-core:jar:3.0.5.RELEASE:compile
[INFO]    org.springframework.security:spring-security-web:jar:3.0.5.RELEASE:compile
[INFO]    xalan:serializer:jar:2.7.1:test
[INFO]    xalan:xalan:jar:2.7.1:test
[INFO]    xml-apis:xml-apis:jar:1.3.04:test

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值