java - appengine-api-1.0-sdk-1.7.6.jar is not a directory -


i started using maven in projects.

i converted old project maven project , @ first worked fine. have problem.

when try run application (is gwt application uses objectify) following error:

sdk location '/users/abelbarbosa/.m2/repository/com/google/appengine/appengine-api-1.0-sdk/1.7.6/appengine-api-1.0-sdk-1.7.6.jar' not directory

i know isn't directory don't think supposed be. don't know how correct this.

is there wrong pom.xml:

<?xml version="1.0"?> <project xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/pom/4.0.0"     xmlns:xsi="http://www.w3.org/2001/xmlschema-instance">   <modelversion>4.0.0</modelversion>   <groupid>webconfuturo</groupid>   <artifactid>webconfuturo</artifactid>   <version>0.0.1-snapshot</version>   <packaging>war</packaging>   <organization>     <name>ohapp!</name>     <url>www.ohapp.pt</url>   </organization>   <dependencies>     <dependency>       <groupid>com.googlecode.objectify</groupid>       <artifactid>objectify</artifactid>       <version>4.0b3</version>       <scope>compile</scope>     </dependency>     <dependency>       <groupid>com.google.web.bindery</groupid>       <artifactid>requestfactory</artifactid>       <version>2.5.1-rc1</version>       <type>pom</type>       <scope>compile</scope>     </dependency>   </dependencies>   <repositories>     <repository>       <snapshots>         <enabled>false</enabled>       </snapshots>       <id>central</id>       <name>central repository</name>       <url>http://repo.maven.apache.org/maven2</url>     </repository>   </repositories>   <pluginrepositories>     <pluginrepository>       <releases>         <updatepolicy>never</updatepolicy>       </releases>       <snapshots>         <enabled>false</enabled>       </snapshots>       <id>central</id>       <name>central repository</name>       <url>http://repo.maven.apache.org/maven2</url>     </pluginrepository>   </pluginrepositories>   <build>     <sourcedirectory>/users/abelbarbosa/documents/workspace/webconfuturo/src</sourcedirectory>     <scriptsourcedirectory>/users/abelbarbosa/documents/workspace/webconfuturo/src/main/scripts</scriptsourcedirectory>     <testsourcedirectory>/users/abelbarbosa/documents/workspace/webconfuturo/src/test/java</testsourcedirectory>     <outputdirectory>/users/abelbarbosa/documents/workspace/webconfuturo/target/classes</outputdirectory>     <testoutputdirectory>/users/abelbarbosa/documents/workspace/webconfuturo/target/test-classes</testoutputdirectory>     <resources>       <resource>         <directory>/users/abelbarbosa/documents/workspace/webconfuturo/src</directory>         <excludes>           <exclude>**/*.java</exclude>         </excludes>       </resource>     </resources>     <testresources>       <testresource>         <directory>/users/abelbarbosa/documents/workspace/webconfuturo/src/test/resources</directory>       </testresource>     </testresources>     <directory>/users/abelbarbosa/documents/workspace/webconfuturo/target</directory>     <finalname>webconfuturo-0.0.1-snapshot</finalname>     <pluginmanagement>       <plugins>         <plugin>           <artifactid>maven-antrun-plugin</artifactid>           <version>1.3</version>         </plugin>         <plugin>           <artifactid>maven-assembly-plugin</artifactid>           <version>2.2-beta-5</version>         </plugin>         <plugin>           <artifactid>maven-dependency-plugin</artifactid>           <version>2.1</version>         </plugin>         <plugin>           <artifactid>maven-release-plugin</artifactid>           <version>2.0</version>         </plugin>       </plugins>     </pluginmanagement>     <plugins>       <plugin>         <artifactid>maven-compiler-plugin</artifactid>         <version>2.5.1</version>         <executions>           <execution>             <id>default-testcompile</id>             <phase>test-compile</phase>             <goals>               <goal>testcompile</goal>             </goals>             <configuration>               <source>1.6</source>               <target>1.6</target>             </configuration>           </execution>           <execution>             <id>default-compile</id>             <phase>compile</phase>             <goals>               <goal>compile</goal>             </goals>             <configuration>               <source>1.6</source>               <target>1.6</target>             </configuration>           </execution>         </executions>         <configuration>           <source>1.6</source>           <target>1.6</target>         </configuration>       </plugin>       <plugin>         <artifactid>maven-war-plugin</artifactid>         <version>2.3</version>         <executions>           <execution>             <id>default-war</id>             <phase>package</phase>             <goals>               <goal>war</goal>             </goals>             <configuration>               <archiveclasses>true</archiveclasses>             </configuration>           </execution>         </executions>         <configuration>           <archiveclasses>true</archiveclasses>         </configuration>       </plugin>       <plugin>         <groupid>com.google.appengine</groupid>         <artifactid>appengine-maven-plugin</artifactid>         <version>1.7.6</version>       </plugin>       <plugin>         <artifactid>maven-clean-plugin</artifactid>         <version>2.4.1</version>         <executions>           <execution>             <id>default-clean</id>             <phase>clean</phase>             <goals>               <goal>clean</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactid>maven-install-plugin</artifactid>         <version>2.3.1</version>         <executions>           <execution>             <id>default-install</id>             <phase>install</phase>             <goals>               <goal>install</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactid>maven-resources-plugin</artifactid>         <version>2.5</version>         <executions>           <execution>             <id>default-resources</id>             <phase>process-resources</phase>             <goals>               <goal>resources</goal>             </goals>           </execution>           <execution>             <id>default-testresources</id>             <phase>process-test-resources</phase>             <goals>               <goal>testresources</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactid>maven-surefire-plugin</artifactid>         <version>2.10</version>         <executions>           <execution>             <id>default-test</id>             <phase>test</phase>             <goals>               <goal>test</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactid>maven-deploy-plugin</artifactid>         <version>2.7</version>         <executions>           <execution>             <id>default-deploy</id>             <phase>deploy</phase>             <goals>               <goal>deploy</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactid>maven-site-plugin</artifactid>         <version>3.0</version>         <executions>           <execution>             <id>default-site</id>             <phase>site</phase>             <goals>               <goal>site</goal>             </goals>             <configuration>               <outputdirectory>/users/abelbarbosa/documents/workspace/webconfuturo/target/site</outputdirectory>               <reportplugins>                 <reportplugin>                   <groupid>org.apache.maven.plugins</groupid>                   <artifactid>maven-project-info-reports-plugin</artifactid>                 </reportplugin>               </reportplugins>             </configuration>           </execution>           <execution>             <id>default-deploy</id>             <phase>site-deploy</phase>             <goals>               <goal>deploy</goal>             </goals>             <configuration>               <outputdirectory>/users/abelbarbosa/documents/workspace/webconfuturo/target/site</outputdirectory>               <reportplugins>                 <reportplugin>                   <groupid>org.apache.maven.plugins</groupid>                   <artifactid>maven-project-info-reports-plugin</artifactid>                 </reportplugin>               </reportplugins>             </configuration>           </execution>         </executions>         <configuration>           <outputdirectory>/users/abelbarbosa/documents/workspace/webconfuturo/target/site</outputdirectory>           <reportplugins>             <reportplugin>               <groupid>org.apache.maven.plugins</groupid>               <artifactid>maven-project-info-reports-plugin</artifactid>             </reportplugin>           </reportplugins>         </configuration>       </plugin>     </plugins>   </build>   <reporting>     <outputdirectory>/users/abelbarbosa/documents/workspace/webconfuturo/target/site</outputdirectory>   </reporting> </project> 

thank help.

best regards

you have use maven appengine plugin. https://code.google.com/p/maven-gae-plugin/


Comments

Popular posts from this blog

How to mention the localhost in android -

php - Calling a template part from a post -

c# - String.format() DateTime With Arabic culture -