Here is the part of my POM file

<?xml version="1.0"?><project>
.....

    <dependency>
      <groupId>com.davidkarlsen.maven.plugins</groupId>
      <artifactId>maven-was-plugin</artifactId>
      <version>1.0-SNAPSHOT</version>
    </dependency>

  </dependencies> 
  <build>          
    <plugins>   
      <plugin>
        <groupId>com.davidkarlsen.maven.plugins</groupId>
        <artifactId>maven-was-plugin</artifactId>
        <configuration>
          <script>C:\Program
Files\IBM\Rational\SDP\6.0\runtimes\base_v6\bin\ejbdeploy.bat</script>
        </configuration>
        <executions>
          <execution>
            <goals> 
             <goal>deploy</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

    </plugins>      
  </build>
</project>



As you see I need maven-was-plugin. I downloaded it and installed it
manually. But maven tells me that it cannot locate this plugin
[INFO] The plugin 'com.davidkarlsen.maven.plugins:maven-was-plugin' does not
exist or no valid version could be found

But I have it in my repository

Why it so?


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to