Assembla home | Assembla project page
 

Changeset 43

Show
Ignore:
Timestamp:
05/17/08 16:40:18 (6 months ago)
Author:
restamon
Message:

.ear file modifications

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • core/trunk/pom.xml

    r27 r43  
    11<?xml version="1.0" encoding="UTF-8"?> 
    2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
    3         <modelVersion>4.0.0</modelVersion> 
    4         <groupId>org.restafarian</groupId> 
    5         <artifactId>core</artifactId> 
    6         <name>Core Components</name> 
    7         <version>1.1</version> 
    8         <description> 
    9                 The restafarian.org core components include the basic building 
    10                 blocks used by all of the other restafarian.org projects. 
    11         </description> 
     2<project 
     3  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" 
     4  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
     5  <modelVersion>4.0.0</modelVersion> 
     6  <groupId>org.restafarian</groupId> 
     7  <artifactId>core</artifactId> 
     8  <name>Core Components</name> 
     9  <version>1.1</version> 
     10  <description> 
     11    The restafarian.org core components include the basic building blocks used 
     12    by all of the other restafarian.org projects. 
     13  </description> 
    1214 
    13        <developers> 
    14                <developer> 
    15                        <id>restamon</id> 
    16                        <name>The Restamon</name> 
    17                        <email>restamon@restafarian.org</email> 
    18                        <roles> 
    19                                <role>Developer</role> 
    20                        </roles> 
    21                        <organization>Restafarian.org</organization> 
    22                </developer> 
    23        </developers> 
     15  <developers> 
     16    <developer> 
     17      <id>restamon</id> 
     18      <name>The Restamon</name> 
     19      <email>restamon@restafarian.org</email> 
     20      <roles> 
     21        <role>Developer</role> 
     22      </roles> 
     23      <organization>Restafarian.org</organization> 
     24    </developer> 
     25  </developers> 
    2426 
    25        <scm> 
    26                <connection> 
    27                        scm:svn:http://svn2.assembla.com/svn/restafarian/core/ 
    28                </connection> 
    29                <developerConnection> 
    30                        scm:svn:http://svn2.assembla.com/svn/restafarian/core/ 
    31                </developerConnection> 
    32                <url>http://trac2.assembla.com/restafarian/browser/core/</url> 
    33        </scm> 
     27  <scm> 
     28    <connection> 
     29      scm:svn:http://svn2.assembla.com/svn/restafarian/core/ 
     30    </connection> 
     31    <developerConnection> 
     32      scm:svn:http://svn2.assembla.com/svn/restafarian/core/ 
     33    </developerConnection> 
     34    <url>http://trac2.assembla.com/restafarian/browser/core/</url> 
     35  </scm> 
    3436 
    35        <pluginRepositories> 
    36                <pluginRepository> 
    37                        <id>Codehaus Snapshots</id> 
    38                        <url>http://snapshots.repository.codehaus.org/</url> 
    39                </pluginRepository> 
    40        </pluginRepositories> 
     37  <pluginRepositories> 
     38    <pluginRepository> 
     39      <id>Codehaus Snapshots</id> 
     40      <url>http://snapshots.repository.codehaus.org/</url> 
     41    </pluginRepository> 
     42  </pluginRepositories> 
    4143 
    42        <reporting> 
    43                <plugins> 
    44                        <plugin> 
    45                                <groupId>org.codehaus.mojo</groupId> 
    46                                <artifactId>dashboard-maven-plugin</artifactId> 
    47                        </plugin> 
    48                        <plugin> 
    49                                <artifactId>maven-javadoc-plugin</artifactId> 
    50                        </plugin> 
    51                        <plugin> 
    52                                <groupId>org.codehaus.mojo</groupId> 
    53                                <artifactId>jxr-maven-plugin</artifactId> 
    54                        </plugin> 
    55                        <plugin> 
    56                                <artifactId>maven-surefire-plugin</artifactId> 
    57                        </plugin> 
    58                        <plugin> 
    59                                <groupId>org.codehaus.mojo</groupId> 
    60                                <artifactId>cobertura-maven-plugin</artifactId> 
    61                        </plugin> 
    62                        <plugin> 
    63                                <groupId>org.apache.maven.plugins</groupId> 
    64                                <artifactId>maven-pmd-plugin</artifactId> 
    65                                <configuration> 
    66                                        <targetjdk>1.5</targetjdk> 
    67                                        <rulesets> 
    68                                                <ruleset>/rulesets/basic.xml</ruleset> 
    69                                                <ruleset>/rulesets/controversial.xml</ruleset> 
    70                                        </rulesets> 
    71                                        <format>xml</format> 
    72                                        <linkXref>true</linkXref> 
    73                                        <sourceEncoding>utf-8</sourceEncoding> 
    74                                        <minimumTokens>100</minimumTokens> 
    75                                </configuration> 
    76                        </plugin> 
    77                        <plugin> 
    78                                <groupId>org.apache.maven.plugins</groupId> 
    79                                <artifactId>maven-checkstyle-plugin</artifactId> 
    80                        </plugin> 
    81                        <plugin> 
    82                                <groupId>org.codehaus.mojo</groupId> 
    83                                <artifactId>taglist-maven-plugin</artifactId> 
    84                        </plugin> 
    85                        <plugin> 
    86                                <groupId>org.codehaus.mojo</groupId> 
    87                                <artifactId>findbugs-maven-plugin</artifactId> 
    88                        </plugin> 
    89                </plugins> 
    90        </reporting> 
     44  <reporting> 
     45    <plugins> 
     46      <plugin> 
     47        <groupId>org.codehaus.mojo</groupId> 
     48        <artifactId>dashboard-maven-plugin</artifactId> 
     49      </plugin> 
     50      <plugin> 
     51        <artifactId>maven-javadoc-plugin</artifactId> 
     52      </plugin> 
     53      <plugin> 
     54        <groupId>org.codehaus.mojo</groupId> 
     55        <artifactId>jxr-maven-plugin</artifactId> 
     56      </plugin> 
     57      <plugin> 
     58        <artifactId>maven-surefire-plugin</artifactId> 
     59      </plugin> 
     60      <plugin> 
     61        <groupId>org.codehaus.mojo</groupId> 
     62        <artifactId>cobertura-maven-plugin</artifactId> 
     63      </plugin> 
     64      <plugin> 
     65        <groupId>org.apache.maven.plugins</groupId> 
     66        <artifactId>maven-pmd-plugin</artifactId> 
     67        <configuration> 
     68          <targetjdk>1.5</targetjdk> 
     69          <rulesets> 
     70            <ruleset>/rulesets/basic.xml</ruleset> 
     71            <ruleset>/rulesets/controversial.xml</ruleset> 
     72          </rulesets> 
     73          <format>xml</format> 
     74          <linkXref>true</linkXref> 
     75          <sourceEncoding>utf-8</sourceEncoding> 
     76          <minimumTokens>100</minimumTokens> 
     77        </configuration> 
     78      </plugin> 
     79      <plugin> 
     80        <groupId>org.apache.maven.plugins</groupId> 
     81        <artifactId>maven-checkstyle-plugin</artifactId> 
     82      </plugin> 
     83      <plugin> 
     84        <groupId>org.codehaus.mojo</groupId> 
     85        <artifactId>taglist-maven-plugin</artifactId> 
     86      </plugin> 
     87      <plugin> 
     88        <groupId>org.codehaus.mojo</groupId> 
     89        <artifactId>findbugs-maven-plugin</artifactId> 
     90      </plugin> 
     91    </plugins> 
     92  </reporting> 
    9193 
    92        <dependencies> 
    93                <dependency> 
    94                        <groupId>commons-logging</groupId> 
    95                        <artifactId>commons-logging</artifactId> 
    96                        <version>1.1.1</version> 
    97                </dependency> 
    98                <dependency> 
    99                        <groupId>commons-configuration</groupId> 
    100                        <artifactId>commons-configuration</artifactId> 
    101                        <version>1.5</version> 
    102                </dependency> 
    103                <dependency> 
    104                        <groupId>commons-beanutils</groupId> 
    105                        <artifactId>commons-beanutils</artifactId> 
    106                </dependency> 
    107                <dependency> 
    108                        <groupId>commons-betwixt</groupId> 
    109                        <artifactId>commons-betwixt</artifactId> 
    110                        <version>0.8</version> 
    111                </dependency> 
    112                <dependency> 
    113                        <groupId>javax.servlet</groupId> 
    114                        <artifactId>servlet-api</artifactId> 
    115                        <version>2.4</version> 
    116                        <scope>provided</scope> 
    117                </dependency> 
    118                <dependency> 
    119                        <groupId>joid</groupId> 
    120                        <artifactId>joid</artifactId> 
    121                        <version>1.0</version> 
    122                </dependency> 
    123                <dependency> 
    124                        <groupId>commons-httpclient</groupId> 
    125                        <artifactId>commons-httpclient</artifactId> 
    126                        <version>3.1</version> 
    127                </dependency> 
    128                <dependency> 
    129                        <groupId>junit</groupId> 
    130                        <artifactId>junit</artifactId> 
    131                        <version>4.4</version> 
    132                </dependency> 
    133          <dependency> 
     94  <dependencies> 
     95    <dependency> 
     96      <groupId>commons-logging</groupId> 
     97      <artifactId>commons-logging</artifactId> 
     98      <version>1.1.1</version> 
     99    </dependency> 
     100    <dependency> 
     101      <groupId>commons-configuration</groupId> 
     102      <artifactId>commons-configuration</artifactId> 
     103      <version>1.5</version> 
     104    </dependency> 
     105    <dependency> 
     106      <groupId>commons-beanutils</groupId> 
     107      <artifactId>commons-beanutils</artifactId> 
     108    </dependency> 
     109    <dependency> 
     110      <groupId>commons-betwixt</groupId> 
     111      <artifactId>commons-betwixt</artifactId> 
     112      <version>0.8</version> 
     113    </dependency> 
     114    <dependency> 
     115      <groupId>javax.servlet</groupId> 
     116      <artifactId>servlet-api</artifactId> 
     117      <version>2.4</version> 
     118      <scope>provided</scope> 
     119    </dependency> 
     120    <dependency> 
     121      <groupId>joid</groupId> 
     122      <artifactId>joid</artifactId> 
     123      <version>1.0</version> 
     124    </dependency> 
     125    <dependency> 
     126      <groupId>commons-httpclient</groupId> 
     127      <artifactId>commons-httpclient</artifactId> 
     128      <version>3.1</version> 
     129    </dependency> 
     130    <dependency> 
     131      <groupId>junit</groupId> 
     132      <artifactId>junit</artifactId> 
     133      <version>4.4</version> 
     134    </dependency> 
     135    <dependency> 
    134136      <groupId>commons-beanutils</groupId> 
    135137      <artifactId>commons-beanutils</artifactId>