spring - Can't add dependency to Maven project -


i'm making project in maven. added dependency pom.xml, downloaded dependency maven repostitory

but have getting following message:

missing artifact org.springframework:spring-context:jar:5.0.0.m5

<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/xsd/maven-4.0.0.xsd">      <modelversion>4.0.0</modelversion>       <groupid>pl.tutorial</groupid>      <artifactid>fiszki</artifactid> <version>0.0.1-snapshot</version>  <dependencies>     <dependency>           //here showing mistake         <groupid>org.springframework</groupid>         <artifactid>spring-context</artifactid>         <version>5.0.0.m5</version>     </dependency> </dependencies> 

i checked , dependency downloaded in maven repository.


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -