Changeset 35:3d6e0d9b519c


Ignore:
Timestamp:
06/04/12 00:28:25 (12 months ago)
Author:
David Soergel <dev@davidsoergel.com>
Branch:
default
Message:

cleaning up basepom stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pom.xml

    r34 r35  
    3131  ~ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    3232  --> 
    33  
    34 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    35          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 
    36     <modelVersion>4.0.0</modelVersion> 
    37     <groupId>com.davidsoergel</groupId> 
    38     <artifactId>conja</artifactId> 
    39  
    40     <name>conja</name> 
    41     <version>1.06-SNAPSHOT</version> 
    42     <url>http://dev.davidsoergel.com/conja</url> 
    43     <description>Incredibly easy functional concurrency in Java</description> 
    44  
    45     <parent> 
    46         <groupId>com.davidsoergel</groupId> 
    47         <artifactId>basepom</artifactId> 
    48         <version>0.98</version> 
    49     </parent> 
    50  
    51     <inceptionYear>2006</inceptionYear> 
    52  
    53     <packaging>jar</packaging> 
    54  
    55     <issueManagement> 
    56         <system>Trac</system> 
    57         <url>http://dev.davidsoergel.com/conja/</url> 
    58     </issueManagement> 
    59  
    60     <scm> 
    61         <connection>scm:svn:http://svn.davidsoergel.com/repos/conja</connection> 
    62         <developerConnection>scm:svn:svn+ssh://svn.davidsoergel.com/home/svn/repos-ds/conja</developerConnection> 
    63     </scm> 
    64  
    65     <distributionManagement> 
    66         <site> 
    67             <id>website</id> 
    68             <url>scpexe://jenkins@dev.davidsoergel.com/home/build/mavensites/conja</url> 
    69         </site> 
    70     </distributionManagement> 
    71  
    72     <properties> 
    73         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
    74     </properties> 
    75  
    76     <repositories> 
    77         <repository> 
    78             <id>dev.davidsoergel.com</id> 
    79             <url>http://dev.davidsoergel.com/nexus/content/groups/public/</url> 
    80         </repository> 
    81     </repositories> 
    82  
    83     <!--  <dependencies> 
     33<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"> 
     34        <modelVersion>4.0.0</modelVersion> 
     35        <groupId>com.davidsoergel</groupId> 
     36        <artifactId>conja</artifactId> 
     37        <name>conja</name> 
     38        <version>1.06-SNAPSHOT</version> 
     39        <url>http://dev.davidsoergel.com/conja</url> 
     40        <description>Incredibly easy functional concurrency in Java</description> 
     41        <parent> 
     42                <groupId>com.davidsoergel</groupId> 
     43                <artifactId>basepom</artifactId> 
     44                <version>0.99-SNAPSHOT</version> 
     45        </parent> 
     46        <inceptionYear>2006</inceptionYear> 
     47        <packaging>jar</packaging> 
     48        <issueManagement> 
     49                <system>Trac</system> 
     50                <url>http://dev.davidsoergel.com/conja/</url> 
     51        </issueManagement> 
     52        <scm> 
     53                <connection>scm:svn:http://svn.davidsoergel.com/repos/conja</connection> 
     54                <developerConnection>scm:svn:svn+ssh://svn.davidsoergel.com/home/svn/repos-ds/conja</developerConnection> 
     55        </scm> 
     56        <distributionManagement> 
     57                <site> 
     58                        <id>website</id> 
     59                        <url>scpexe://jenkins@dev.davidsoergel.com/home/build/mavensites/conja</url> 
     60                </site> 
     61        </distributionManagement> 
     62        <properties> 
     63                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
     64        </properties> 
     65        <repositories> 
     66                <repository> 
     67                        <id>dev.davidsoergel.com</id> 
     68                        <url>http://dev.davidsoergel.com/nexus/content/groups/public</url> 
     69                        <snapshots> 
     70                                <enabled>false</enabled> 
     71                        </snapshots> 
     72                        <releases> 
     73                                <enabled>true</enabled> 
     74                        </releases> 
     75                </repository> 
     76                <repository> 
     77                        <id>dev.davidsoergel.com.snapshot</id> 
     78                        <url>http://dev.davidsoergel.com/nexus/content/repositories/snapshots</url> 
     79                        <snapshots> 
     80                                <enabled>true</enabled> 
     81                        </snapshots> 
     82                        <releases> 
     83                                <enabled>false</enabled> 
     84                        </releases> 
     85                </repository> 
     86        </repositories> 
     87        <!--  <dependencies> 
    8488     <dependency> 
    8589       <groupId>com.google.collections</groupId> 
     
    8993     </dependency> 
    9094   </dependencies> --> 
    91  
    9295</project> 
Note: See TracChangeset for help on using the changeset viewer.