I did try adding a repository, here is my settings.xml
but it had no effect upon the build output.

:(

<settings>

  <proxies>
    <proxy>
      <id>myproxy</id>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.company_name.co.nz</host>
      <port>8080</port>
      <username></username>
      <password></password>
      <nonProxyHosts>localhost|inet.sirtrack.com</nonProxyHosts>
    </proxy>
  </proxies>

  <servers>
  </servers>

  <mirrors>
  </mirrors>

  <profiles>
      <id>docsrc repos</id>
    <profile>
        <repositories>
          <repository>
            <id>docsrc</id>
            <name>DocSRC Repository for Maven2</name>
            <url>http://mirrors.dotsrc.org/maven2</url>
          </repository>
       </repositories>
    </profile>
  </profiles>

  <activeProfiles>
    <activeProfile>docsrc repos</activeProfile>
  </activeProfiles>

</settings>


++++++++++++++++++++++++++

Here is my pom if it helps:


<?xml version="1.0" encoding="UTF-8"?>
<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>common_java</groupId>
  <name>Common Java Library</name>
  <artifactId>common_java</artifactId>
  <version>0.0.1</version>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <mainClass>com.sirtrack.common.Common</mainClass>
              <addClasspath>true</addClasspath>
            </manifest>
          </archive>
        </configuration>
      </plugin>    
      <plugin>
         <groupId>org.codehaus.mojo</groupId>
            <artifactId>dependency-maven-plugin</artifactId>
                <executions>
                        <execution>
                                <id>copy-dependencies</id>
                                <phase>package</phase>
                                <goals>
                                        <goal>copy-dependencies</goal>
                                </goals>
                                <configuration>
                                       
<outputDirectory>C:/projects/common_java/target</outputDirectory>
                                </configuration>
                        </execution>
           </executions>
        </plugin>      
      </plugins>
  </build>
    <dependencies>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.8</version>
    </dependency>
  </dependencies>
</project>


-- 
View this message in context: 
http://www.nabble.com/how-do-I-set-jar-options-tf3086324.html#a8594411
Sent from the Maven Eclipse - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to