Hi Tushar,
Clone it with git, and than rebuild. All project can be found here :
https://github.com/Jasig/cas
So, first build your dependencies, than your project. Once
dependencies are build they will be saved to your local maven
repository and you can use them without need of rebuilding again as
long as you don't change them.
Best regards,
Augustyn

On 29 May 2014 at 16:20, Tushar Patil <[email protected]> wrote:
>
> Hi ,
>
>    Maven clean and install was working fine but after my system got format
> and now I am trying to take build facing below error .
>
>
> ERROR
>
> Failed to execute goal on project cas-server-webapp: Could not resolve
> dependencies for project
> org.jasig.cas:cas-server-webapp:war:4.0.0-RC4-SNAPSHOT: The following
> artifacts could not be resolved:
> org.jasig.cas:cas-server-webapp-support:jar:4.0.0-RC4-SNAPSHOT,
> org.jasig.cas:cas-server-support-jdbc:jar:4.0.0-RC4-SNAPSHOT: Could not find
> artifact org.jasig.cas:cas-server-webapp-support:jar:4.0.0-RC4-SNAPSHOT in
> jasig-repository (http://developer.ja-sig.org/maven2) -> [Help 1]
>
>
> POM.xml
>
> <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>
>     <groupId>org.jasig.cas</groupId>
>     <artifactId>cas-server</artifactId>
>     <version>4.0.0-RC4-SNAPSHOT</version>
>   </parent>
>   <modelVersion>4.0.0</modelVersion>
>   <artifactId>cas-server-webapp</artifactId>
>   <packaging>war</packaging>
>   <name>Jasig CAS Web Application</name>
>   <dependencies>
>     <dependency>
>       <groupId>org.jasig.cas</groupId>
>       <artifactId>cas-server-webapp-support</artifactId>
>       <version>${project.version}</version>
>       <scope>compile</scope>
>     </dependency>
>     <dependency>
>       <groupId>org.springframework</groupId>
>       <artifactId>spring-expression</artifactId>
>       <version>${spring.version}</version>
>       <scope>runtime</scope>
>     </dependency>
>     <dependency>
>       <groupId>javax.servlet</groupId>
>       <artifactId>jstl</artifactId>
>       <version>1.1.2</version>
>       <type>jar</type>
>       <scope>runtime</scope>
>     </dependency>
>     <dependency>
>       <groupId>taglibs</groupId>
>       <artifactId>standard</artifactId>
>       <version>1.1.2</version>
>       <type>jar</type>
>       <scope>runtime</scope>
>     </dependency>
> <dependency>
>         <groupId>org.jasig.cas</groupId>
>         <artifactId>cas-server-support-jdbc</artifactId>
>         <version>${project.version}</version>
>     </dependency>
>     <dependency>
>         <groupId>commons-dbcp</groupId>
>         <artifactId>commons-dbcp</artifactId>
>         <version>1.2.1</version>
>         <scope>runtime</scope>
>     </dependency>
>     <dependency>
>     <groupId>commons-pool</groupId>
>     <artifactId>commons-pool</artifactId>
>     <version>1.3</version>
>     </dependency>
>         <dependency>
>     <groupId>commons-collections</groupId>
>     <artifactId>commons-collections</artifactId>
>     <version>3.2.1</version>
>     </dependency>
>          <dependency>
>         <groupId>c3p0</groupId>
>         <artifactId>c3p0</artifactId>
>         <version>0.9.1.2</version>
>     </dependency>
>     <dependency>
>     <groupId>postgresql</groupId>
>     <artifactId>postgresql</artifactId>
>     <version>9.1-901.jdbc4</version>
>     </dependency>
>
>   </dependencies>
>
>   <build>
>     <plugins>
>       <plugin>
>         <groupId>org.apache.maven.plugins</groupId>
>         <artifactId>maven-war-plugin</artifactId>
>         <configuration>
>           <warName>cas</warName>
>           <webResources>
>             <resource>
>               <directory>${basedir}/src/main/webapp/WEB-INF</directory>
>               <filtering>true</filtering>
>               <targetPath>WEB-INF</targetPath>
>               <includes>
>                 <include>**/web.xml</include>
>               </includes>
>             </resource>
>           </webResources>
>         </configuration>
>       </plugin>
>     </plugins>
>   </build>
>
>   <properties>
>     <cs.dir>${project.parent.basedir}</cs.dir>
>   </properties>
> </project>
>
>
>
>
> --
> You are currently subscribed to [email protected] as:
> [email protected]
> To unsubscribe, change settings or access archives, see
> http://www.ja-sig.org/wiki/display/JSG/cas-dev

-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-dev

Reply via email to