Hi ,
I created hosted repository and uploaded project related artifacts.
how to add the plugins(goal) like clean,complier and war(maven-war-plugin).
I added directly org.apache.maven.plugins as groupid id.
while run the application it gives classnotfound exceptions
.org.apache.maven.shared.filterexception

this is my settings.xml file

<?xml version="1.0" encoding="UTF-8"?>




<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0";
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd";>
  

  

  
        

  
  <pluginGroups>
    
        
  
  </pluginGroups>

  
  <proxies>
    
   
     
  </proxies>

  
  <servers>
    
    <server>
      <id>public</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
     
       


    
    

        
  </servers>

  
  <mirrors>
    
  
<mirror>

<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8081/nexus/content/groups/public/</url>
</mirror>
</mirrors>
<profiles>
<profile>
          <id>jdk-1.6</id>

          <activation>
            <jdk>1.6</jdk>
          </activation>

          
        </profile>
        
<profile>
<id>nexus</id>


<repositories>
    <repository>
          <id>repository</id>
          <url>http://repository</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>false</enabled></snapshots>
        </repository>
        
      </repositories>
          
          
          
     <pluginRepositories>
         <pluginRepository>
          <id>repository</id>
          <url>http://repository</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>false</enabled></snapshots>
        </pluginRepository>
       </pluginRepositories>
                


    </profile>
</profiles>
<activeProfiles>
    <activeProfile>nexus</activeProfile>
    <activeProfile>jdk-1.6</activeProfile>
                
  </activeProfiles>
</settings>


Thanks & Regards,
chandra

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

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to