Skip to content

Commit

Permalink
Initial fixes to get the par generation working so the webserver repo…
Browse files Browse the repository at this point in the history
… can have a new test app
  • Loading branch information
Christopher Frost committed Feb 1, 2011
1 parent 2e37274 commit c44f617
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build-formtags/build.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="s2ap-formtags-sample" default="precommit">
<project name="virgo-formtags-sample" default="precommit">

<path id="bundles">
<pathelement location="${basedir}/../war/formtags-war" />
Expand Down
2 changes: 1 addition & 1 deletion build-formtags/publish-top-level.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="publish-top-level">

<target name="publish" depends="publish-package" description="Publish package"/>
<target name="publish" depends="publish-package-build, publish-package-download" description="Publish package"/>

</project>
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2.0.1
version=3.0.0
release.type=integration
natural.name=formtags
project.name=Virgo Server Samples
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Version: 2.0.1
Bundle-Version: 3.0.0
Bundle-Name: FormTags Domain Model
Bundle-SymbolicName: org.springframework.showcase.formtags.domain_par
Export-Package: org.springframework.showcase.formtags.domain
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Manifest-Version: 1.0
Bundle-Version: 2.0.1
Bundle-Version: 3.0.0
Bundle-ManifestVersion: 2
Bundle-Name: FormTags Service (and implementation)
Bundle-SymbolicName: org.springframework.showcase.formtags.service_par
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Version: 2.0.1
Bundle-Version: 3.0.0
Bundle-Name: FormTags Web Bundle
Bundle-SymbolicName: org.springframework.showcase.formtags.web_par
Import-Package: org.springframework.showcase.formtags.domain,
org.springframework.showcase.formtags.service,
org.eclipse.virgo.web.dm;version="[1.0,3.0)",
org.eclipse.virgo.web.dm;version="[3.0,5.0)",
javax.servlet.jsp.jstl.core;version="[1.1.2,1.2.0)",
javax.servlet.http
Import-Bundle: com.springsource.org.apache.taglibs.standard;version="1.1.2"
Import-Library: org.springframework.spring;version="[2.5.6.A,4.0.0)"
Import-Library: org.springframework.spring;version="[2.5.6.A,5.0.0)"
Web-ContextPath: formtags-par

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Application-SymbolicName: org.springframework.showcase.formtags_par
Application-Version: 2.0.1
Application-Version: 3.0.0
Application-Name: FormTags Showcase Application (PAR)


Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Version: 2.0.1
Bundle-Version: 3.0.0
Bundle-Name: FormTags Shared Library War
Bundle-SymbolicName: org.springframework.showcase.formtags_shared_libs
Import-Package: javax.servlet.http,
javax.servlet.jsp.jstl.core;version="[1.1.2,1.2.0)"
Import-Library: org.springframework.spring;version="[2.5.6.A,4.0.0)"
Import-Library: org.springframework.spring;version="[2.5.6.A,5.0.0)"
Import-Bundle: com.springsource.org.apache.taglibs.standard;version="1.1.2"
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: FormTags Service (and implementation)
Bundle-SymbolicName: org.springframework.showcase.formtags.service_shared_services
Bundle-Version: 2.0.1
Bundle-Version: 3.0.0
Import-Library: org.springframework.spring;version="[2.5.6.A,4.0.0)"
Export-Package: org.springframework.showcase.formtags.domain,
org.springframework.showcase.formtags.service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: FormTags Shared Services WAR
Bundle-SymbolicName: org.springframework.showcase.formtags.web_shared_services
Bundle-Version: 2.0.1
Bundle-Version: 3.0.0
Import-Package: javax.servlet.http,
org.springframework.showcase.formtags.domain,
org.springframework.showcase.formtags.service,
Expand Down
2 changes: 0 additions & 2 deletions war/formtags-war/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ main.webapp.dir=${basedir}/src/main/webapp
main.java.dir=${basedir}/src/main/java
war.classes.dir=${war.staging.dir}/WEB-INF/classes
main.resources.dir=${basedir}/src/main/resources
source.version=1.5
target.version=${source.version}
compile.debug=true
compile.debug.level=lines,vars,source
package.dist.dir=${package.output.dir}/dist
Expand Down
3 changes: 3 additions & 0 deletions war/formtags-war/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<property file="${basedir}/../../build.versions"/>
<property file="${basedir}/build.properties"/>


<import file="${basedir}/../../virgo-build/common/common.xml"/>

<tstamp>
<format property="timestamp" pattern="yyyyMMddHHmmss" timezone="GMT"/>
</tstamp>
Expand Down

0 comments on commit c44f617

Please sign in to comment.