You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Franz Amador-2 <fg...@gmail.com> on 2008/05/27 21:27:16 UTC

T5: Can't find TapestryConstants after snapshot update

I just updated to the latest shapshot jars (and updated my import statements
to the new org.apache.tapestry5 package names), and now I can't find the
TapestryConstants class.  My pom.xml looks like this

	<properties>
		<tapestry-release-version>5.0.12-SNAPSHOT</tapestry-release-version>
		...
	</properties>

	<dependencies>
		<!-- Tapestry dependencies -->
		<dependency>
			<groupId>org.apache.tapestry</groupId>
			<artifactId>tapestry-core</artifactId>
			<version>${tapestry-release-version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.tapestry</groupId>
			<artifactId>tapestry-test</artifactId>
			<version>${tapestry-release-version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.tapestry</groupId>
			<artifactId>tapestry-upload</artifactId>
			<version>${tapestry-release-version}</version>
		</dependency>
		...

-- 
View this message in context: http://www.nabble.com/T5%3A-Can%27t-find-TapestryConstants-after-snapshot-update-tp17498133p17498133.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: T5: Can't find TapestryConstants after snapshot update

Posted by Franz Amador-2 <fg...@gmail.com>.
Thanks, that's what I needed.  How did you know this?


Robert Zeigler wrote:
> 
> As mentioned earlier, TapestryConstants has been refactored.
> 
>  From trunk/tapestry-project:
> 
> find ./ -name '*Constants.java'
> .//tapestry-core/src/main/java/org/apache/tapestry5/ 
> BindingConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/ 
> CSSClassConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/EventConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/grid/ 
> GridConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/internal/ 
> InternalConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/internal/services/ 
> RequestConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/ 
> MetaDataConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/ 
> PersistenceConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/services/ 
> TransformConstants.java
> .//tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
> .//tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/IOCConstants.java
> .//tapestry-test/src/main/java/org/apache/tapestry5/test/ 
> TapestryTestConstants.java
> 

-- 
View this message in context: http://www.nabble.com/T5%3A-Can%27t-find-TapestryConstants-after-snapshot-update-tp17498133p17501765.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: T5: Can't find TapestryConstants after snapshot update

Posted by Robert Zeigler <ro...@scazdl.org>.
As mentioned earlier, TapestryConstants has been refactored.

 From trunk/tapestry-project:

find ./ -name '*Constants.java'
.//tapestry-core/src/main/java/org/apache/tapestry5/ 
BindingConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/ 
CSSClassConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/EventConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/grid/ 
GridConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/internal/ 
InternalConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/internal/services/ 
RequestConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/ 
MetaDataConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/ 
PersistenceConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/services/ 
TransformConstants.java
.//tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
.//tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/IOCConstants.java
.//tapestry-test/src/main/java/org/apache/tapestry5/test/ 
TapestryTestConstants.java


On May 27, 2008, at 5/272:27 PM , Franz Amador-2 wrote:

>
> I just updated to the latest shapshot jars (and updated my import  
> statements
> to the new org.apache.tapestry5 package names), and now I can't find  
> the
> TapestryConstants class.  My pom.xml looks like this
>
> 	<properties>
> 		<tapestry-release-version>5.0.12-SNAPSHOT</tapestry-release-version>
> 		...
> 	</properties>
>
> 	<dependencies>
> 		<!-- Tapestry dependencies -->
> 		<dependency>
> 			<groupId>org.apache.tapestry</groupId>
> 			<artifactId>tapestry-core</artifactId>
> 			<version>${tapestry-release-version}</version>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.apache.tapestry</groupId>
> 			<artifactId>tapestry-test</artifactId>
> 			<version>${tapestry-release-version}</version>
> 			<scope>test</scope>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.apache.tapestry</groupId>
> 			<artifactId>tapestry-upload</artifactId>
> 			<version>${tapestry-release-version}</version>
> 		</dependency>
> 		...
>
> -- 
> View this message in context: http://www.nabble.com/T5%3A-Can%27t-find-TapestryConstants-after-snapshot-update-tp17498133p17498133.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: T5: Can't find TapestryConstants after snapshot update

Posted by Shing Hing Man <ma...@yahoo.com>.
The TapestryConstants class have been replaced 
by BindingConstants, CSSClassConstants,...
Please see 

http://tapestry.formos.com/nightly/tapestry5/apidocs/index.html

Shing

--- Franz Amador-2 <fg...@gmail.com> wrote:

> 
> I just updated to the latest shapshot jars (and
> updated my import statements
> to the new org.apache.tapestry5 package names), and
> now I can't find the
> TapestryConstants class.  My pom.xml looks like this
> 
> 	<properties>
> 	
>
<tapestry-release-version>5.0.12-SNAPSHOT</tapestry-release-version>
> 		...
> 	</properties>
> 
> 	<dependencies>
> 		<!-- Tapestry dependencies -->
> 		<dependency>
> 			<groupId>org.apache.tapestry</groupId>
> 			<artifactId>tapestry-core</artifactId>
> 			<version>${tapestry-release-version}</version>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.apache.tapestry</groupId>
> 			<artifactId>tapestry-test</artifactId>
> 			<version>${tapestry-release-version}</version>
> 			<scope>test</scope>
> 		</dependency>
> 		<dependency>
> 			<groupId>org.apache.tapestry</groupId>
> 			<artifactId>tapestry-upload</artifactId>
> 			<version>${tapestry-release-version}</version>
> 		</dependency>
> 		...
> 
> -- 
> View this message in context:
>
http://www.nabble.com/T5%3A-Can%27t-find-TapestryConstants-after-snapshot-update-tp17498133p17498133.html
> Sent from the Tapestry - User mailing list archive
> at Nabble.com.
> 
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail:
> users-help@tapestry.apache.org
> 
> 


Home page : http://www.lombok.demon.co.uk/



      __________________________________________________________
Sent from Yahoo! Mail.
A Smarter Email http://uk.docs.yahoo.com/nowyoucan.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org