Changeset 1856


Ignore:
Timestamp:
04/04/12 17:22:14 (12 years ago)
Author:
herste
Message:

finally working

Location:
vlo/trunk/vlo_webapp
Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/trunk/vlo_webapp/pom.xml

    r1855 r1856  
    88    <name>VirtualLanguageObservatory</name>
    99    <description></description>
    10     <dependencies>
    11         <dependency>
    12             <groupId>net.handle</groupId>
    13             <artifactId>handle-client</artifactId>
    14             <version>7.0</version>
    15         </dependency>
    16         <dependency>
    17             <groupId>org.apache.solr</groupId>
    18             <artifactId>solr-solrj</artifactId>
    19             <version>1.4.1</version>
    20         </dependency>
    21         <dependency>
    22             <groupId>org.apache.wicket</groupId>
    23             <artifactId>wicket</artifactId>
    24             <version>1.4.8</version>
    25         </dependency>
    26         <dependency>
    27             <groupId>org.apache.wicket</groupId>
    28             <artifactId>wicket-extensions</artifactId>
    29             <version>1.4.8</version>
    30         </dependency>
    31         <dependency>
    32             <groupId>com.55minutes</groupId>
    33             <artifactId>fiftyfive-wicket</artifactId>
    34             <version>2.0.5</version>
    35         </dependency>
    36         <dependency>
    37             <groupId>commons-lang</groupId>
    38             <artifactId>commons-lang</artifactId>
    39             <version>2.3</version>
    40         </dependency>
    41         <dependency>
    42             <groupId>org.slf4j</groupId>
    43             <artifactId>slf4j-api</artifactId>
    44             <version>1.6.1</version>
    45         </dependency>
    46         <dependency>
    47             <groupId>org.slf4j</groupId>
    48             <artifactId>slf4j-log4j12</artifactId>
    49             <version>1.6.1</version>
    50         </dependency>
    51         <dependency>
    52             <groupId>log4j</groupId>
    53             <artifactId>log4j</artifactId>
    54             <version>1.2.14</version>
    55         </dependency>
    56         <dependency>
    57             <groupId>junit</groupId>
    58             <artifactId>junit</artifactId>
    59             <version>4.6</version>
    60             <scope>test</scope>
    61         </dependency>
    62         <dependency>
    63             <groupId>javax.servlet</groupId>
    64             <artifactId>servlet-api</artifactId>
    65             <version>2.5</version>
    66             <scope>provided</scope>
    67         </dependency>
    68         <dependency>
    69             <groupId>org.mortbay.jetty</groupId>
    70             <artifactId>jetty</artifactId>
    71             <version>6.1.4</version>
    72             <scope>test</scope>
    73         </dependency>
    74         <dependency>
    75             <groupId>org.mortbay.jetty</groupId>
    76             <artifactId>jetty-util</artifactId>
    77             <version>6.1.4</version>
    78             <scope>test</scope>
    79         </dependency>
    80         <dependency>
    81             <groupId>org.mortbay.jetty</groupId>
    82             <artifactId>jetty-management</artifactId>
    83             <version>6.1.4</version>
    84             <scope>test</scope>
    85         </dependency>
    86         <dependency>
    87             <groupId>org.springframework</groupId>
    88             <artifactId>spring-context</artifactId>
    89             <version>2.5.6</version>
    90         </dependency>
    91         <dependency>
    92             <groupId>org.springframework</groupId>
    93             <artifactId>spring-web</artifactId>
    94             <version>2.5.6</version>
    95         </dependency>
    96         <dependency>
    97             <groupId>com.ximpleware</groupId>
    98             <artifactId>vtd-xml</artifactId>
    99             <version>2.10</version>
    100         </dependency>
    101     </dependencies>
    10210
    10311    <properties>
     
    13543                </configuration>
    13644            </plugin>
    137             <plugin>
     45            <!--<plugin>
    13846                <groupId>org.apache.maven.plugins</groupId>
    13947                <artifactId>maven-jar-plugin</artifactId>
     
    16169                    </archive>
    16270                </configuration>
    163             </plugin>
    164             <plugin>
     71            </plugin>-->
     72            <!--<plugin>
    16573                <groupId>org.apache.maven.plugins</groupId>
    16674                <artifactId>maven-dependency-plugin</artifactId>
     
    17886                            <overWriteIfNewer>true</overWriteIfNewer>
    17987                        </configuration>
     88                    </execution>
     89                </executions>
     90            </plugin>-->
     91            <!--<plugin>
     92                <artifactId>maven-assembly-plugin</artifactId>
     93                <version>2.3</version>
     94                <configuration>
     95                    <descriptors>
     96                        <descriptor>src/main/assembly/buildwar.xml</descriptor>
     97                    </descriptors>
     98                </configuration>
     99                <executions>
     100                    <execution>
     101                        <id>make-assemblyW</id>
     102                        <phase>package</phase>
     103                        <goals>
     104                            <goal>single</goal>
     105                        </goals>
     106                    </execution>
     107                </executions>
     108            </plugin>-->
     109            <!-- NOTE: Run importer from jar file with -cp .:$filename.jar eu.clarin.cmdi.vlo.importer.MetadataImporter -->
     110            <plugin>
     111                <artifactId>maven-assembly-plugin</artifactId>
     112                <version>2.3</version>
     113                <configuration>
     114                    <descriptors>
     115                        <descriptor>src/main/assembly/buildjar.xml</descriptor>
     116                    </descriptors>
     117                </configuration>
     118                <executions>
     119                    <execution>
     120                        <id>make-assemblyJ</id>
     121                        <phase>package</phase>
     122                        <goals>
     123                            <goal>single</goal>
     124                        </goals>
    180125                    </execution>
    181126                </executions>
     
    192137    </repositories>
    193138
     139    <dependencies>
     140            <dependency>
     141            <groupId>net.handle</groupId>
     142            <artifactId>handle-client</artifactId>
     143            <version>7.0</version>
     144        </dependency>
     145        <dependency>
     146            <groupId>org.apache.solr</groupId>
     147            <artifactId>solr-solrj</artifactId>
     148            <version>1.4.1</version>
     149        </dependency>
     150        <dependency>
     151            <groupId>org.apache.wicket</groupId>
     152            <artifactId>wicket</artifactId>
     153            <version>1.4.8</version>
     154        </dependency>
     155        <dependency>
     156            <groupId>org.apache.wicket</groupId>
     157            <artifactId>wicket-extensions</artifactId>
     158            <version>1.4.8</version>
     159        </dependency>
     160        <dependency>
     161            <groupId>com.55minutes</groupId>
     162            <artifactId>fiftyfive-wicket</artifactId>
     163            <version>2.0.5</version>
     164        </dependency>
     165        <dependency>
     166            <groupId>commons-lang</groupId>
     167            <artifactId>commons-lang</artifactId>
     168            <version>2.3</version>
     169        </dependency>
     170        <dependency>
     171            <groupId>org.slf4j</groupId>
     172            <artifactId>slf4j-api</artifactId>
     173            <version>1.6.1</version>
     174        </dependency>
     175        <dependency>
     176            <groupId>org.slf4j</groupId>
     177            <artifactId>slf4j-log4j12</artifactId>
     178            <version>1.6.1</version>
     179        </dependency>
     180        <dependency>
     181            <groupId>log4j</groupId>
     182            <artifactId>log4j</artifactId>
     183            <version>1.2.14</version>
     184        </dependency>
     185        <dependency>
     186            <groupId>junit</groupId>
     187            <artifactId>junit</artifactId>
     188            <version>4.6</version>
     189            <scope>test</scope>
     190        </dependency>
     191        <dependency>
     192            <groupId>javax.servlet</groupId>
     193            <artifactId>servlet-api</artifactId>
     194            <version>2.5</version>
     195            <scope>provided</scope>
     196        </dependency>
     197        <dependency>
     198            <groupId>org.mortbay.jetty</groupId>
     199            <artifactId>jetty</artifactId>
     200            <version>6.1.4</version>
     201            <scope>test</scope>
     202        </dependency>
     203        <dependency>
     204            <groupId>org.mortbay.jetty</groupId>
     205            <artifactId>jetty-util</artifactId>
     206            <version>6.1.4</version>
     207            <scope>test</scope>
     208        </dependency>
     209        <dependency>
     210            <groupId>org.mortbay.jetty</groupId>
     211            <artifactId>jetty-management</artifactId>
     212            <version>6.1.4</version>
     213            <scope>test</scope>
     214        </dependency>
     215        <dependency>
     216            <groupId>org.springframework</groupId>
     217            <artifactId>spring-context</artifactId>
     218            <version>2.5.6</version>
     219        </dependency>
     220        <dependency>
     221            <groupId>org.springframework</groupId>
     222            <artifactId>spring-web</artifactId>
     223            <version>2.5.6</version>
     224        </dependency>
     225        <dependency>
     226            <groupId>com.ximpleware</groupId>
     227            <artifactId>vtd-xml</artifactId>
     228            <version>2.10</version>
     229        </dependency>
     230    </dependencies>
     231
    194232
    195233</project>
Note: See TracChangeset for help on using the changeset viewer.