Missing artifact commons-logging:commons-logging:jar:1.0.3:compile
Missing artifact org.springframework:spring-webmvc:jar:3.0.5.RELEASE:compile
Missing artifact
org.springframework:spring-webmvc-portlet:jar:3.0.5.RELEASE:compile
Missing artifact javax.servlet:jstl:jar:1.1.2:runtime
Missing artifact taglibs:standard:jar:1.1.2:runtime

I have all my jar files in the Maven dependencies even though i am getting
the above error i have also tried with update dependencies but that too does
not work.

My pom.xml file:

<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";>
        <modelVersion>4.0.0</modelVersion>
        <groupId>springapp2</groupId>
        <artifactId>springapp2</artifactId>
        <packaging>war</packaging>
        <name>springapp2</name>
        <version>1.0-SNAPSHOT</version>
        <description>step by step spring</description>
        <build>
                <finalName>springapp2</finalName>
                <plugins>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <version>2.3.2</version>
                                <configuration>
                                        <source>1.5</source>
                                        <target>1.5</target>
                                </configuration>
                        </plugin>
                </plugins>
        </build>
        
        <properties>
                
<org.springframework.version>3.0.5.RELEASE</org.springframework.version>
                <servlet.version>2.5</servlet.version>
        </properties>
        <dependencies>
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-orm</artifactId>
                        <version>3.0.5.RELEASE</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-web</artifactId>
                        <version>3.0.5.RELEASE</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-webmvc</artifactId>
                        <version>3.0.5.RELEASE</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-webmvc-portlet</artifactId>
                        <version>3.0.5.RELEASE</version>
                        <scope>compile</scope>
                </dependency>

                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-context-support</artifactId>
                        <version>3.0.5.RELEASE</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-jms</artifactId>
                        <version>3.0.5.RELEASE</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-test</artifactId>
                        <version>3.0.5.RELEASE</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>commons-logging</groupId>
                        <artifactId>commons-logging</artifactId>
                        <version>1.0.3</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>javax.servlet</groupId>
                        <artifactId>jstl</artifactId>
                        <version>1.1.2</version>
                        <scope>runtime</scope>
                </dependency>

                <dependency>
                        <groupId>javax.servlet</groupId>
                        <artifactId>servlet-api</artifactId>
                        <version>2.5</version>
                </dependency>
                <dependency>
                        <groupId>taglibs</groupId>
                        <artifactId>standard</artifactId>
                        <version>1.1.2</version>
                        <scope>runtime</scope>
                </dependency>
        </dependencies>
</project>


Can any one help me in resolving this issue 

Thanks in advance
 


--
View this message in context: 
http://maven.40175.n5.nabble.com/Missing-Artifacts-tp4793474p4793474.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to