Upgrade to spring-build. Added dm Server library file
This commit is contained in:
parent
4e65f48f72
commit
4271f6d9e1
|
@ -19,6 +19,7 @@
|
|||
<pathelement location="../org.springframework.web.servlet"/>
|
||||
<pathelement location="../org.springframework.web.portlet"/>
|
||||
<pathelement location="../org.springframework.test"/>
|
||||
<pathelement location="../org.springframework.spring-library"/>
|
||||
</path>
|
||||
|
||||
<property file="${basedir}/../build.properties"/>
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="org.springframework.spring-library">
|
||||
<property file="${basedir}/../build.properties"/>
|
||||
<import file="${basedir}/../build-spring-framework/package-library.xml"/>
|
||||
<import file="${basedir}/../spring-build/library/default.xml"/>
|
||||
</project>
|
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="http://ivyrep.jayasoft.org/ivy-doc.xsl"?>
|
||||
<ivy-module
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd"
|
||||
version="1.3">
|
||||
|
||||
<info organisation="org.springframework" module="${ant.project.name}">
|
||||
<license name="Apache 2.0" url="http://www.apache.org/licenses/LICENSE-2.0"/>
|
||||
</info>
|
||||
|
||||
<configurations>
|
||||
<include file="${spring.build.dir}/common/default-ivy-configurations.xml"/>
|
||||
</configurations>
|
||||
|
||||
<publications>
|
||||
<artifact name="${ant.project.name}" type="library" ext="libd"/>
|
||||
</publications>
|
||||
|
||||
<dependencies>
|
||||
<dependency org="org.springframework" name="org.springframework.aop" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.beans" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.context" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.context.support" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.core" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.jdbc" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.jms" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.orm" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.transaction" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.web" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.springframework" name="org.springframework.web.servlet" rev="latest.integration" conf="compile->compile"/>
|
||||
<dependency org="org.aopalliance" name="com.springsource.org.aopalliance" rev="1.0.0" conf="compile->compile"/>
|
||||
</dependencies>
|
||||
|
||||
</ivy-module>
|
|
@ -0,0 +1,17 @@
|
|||
Library-SymbolicName: org.springframework.spring
|
||||
Library-Version: @bundle.version@
|
||||
Library-Name: Spring Framework
|
||||
Import-Bundle:
|
||||
org.springframework.aop;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.aspects;version="[@bundle.version@, @bundle.version@]";import-scope:=application,
|
||||
org.springframework.beans;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.context;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.context.support;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.core;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.jdbc;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.jms;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.orm;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.transaction;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.web;version="[@bundle.version@, @bundle.version@]",
|
||||
org.springframework.web.servlet;version="[@bundle.version@, @bundle.version@]",
|
||||
com.springsource.org.aopalliance;version="[1.0.0, 1.0.0]"
|
Loading…
Reference in New Issue