Ignore:
Timestamp:
08/28/10 21:55:08 (21 months ago)
Author:
kasper
Message:

Ticket #382: Added CLI for executing jobs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AnalyzerBeans/trunk/pom.xml

    r978 r982  
    6262                                </configuration> 
    6363                        </plugin> 
     64                        <plugin> 
     65                                <groupId>org.apache.maven.plugins</groupId> 
     66                                <artifactId>maven-jar-plugin</artifactId> 
     67                                <configuration> 
     68                                        <archive> 
     69                                                <manifest> 
     70                                                        <addClasspath>true</addClasspath> 
     71                                                        <addDefaultImplementationEntries>true</addDefaultImplementationEntries> 
     72                                                        <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> 
     73                                                        <classpathPrefix>lib</classpathPrefix> 
     74                                                        <mainClass>org.eobjects.analyzer.cli.Main</mainClass> 
     75                                                </manifest> 
     76                                        </archive> 
     77                                </configuration> 
     78                        </plugin> 
     79                        <plugin> 
     80                                <groupId>org.apache.maven.plugins</groupId> 
     81                                <artifactId>maven-dependency-plugin</artifactId> 
     82                                <executions> 
     83                                        <execution> 
     84                                                <id>copy-dependencies</id> 
     85                                                <phase>package</phase> 
     86                                                <goals> 
     87                                                        <goal>copy-dependencies</goal> 
     88                                                </goals> 
     89                                                <configuration> 
     90                                                        <includeScope>runtime</includeScope> 
     91                                                        <outputDirectory>${project.build.directory}/lib</outputDirectory> 
     92                                                </configuration> 
     93                                        </execution> 
     94                                </executions> 
     95                        </plugin> 
    6496                </plugins> 
    6597        </build> 
     
    112144                </dependency> 
    113145                <dependency> 
     146                        <groupId>args4j</groupId> 
     147                        <artifactId>args4j</artifactId> 
     148                        <version>2.0.12</version> 
     149                </dependency> 
     150                <dependency> 
    114151                        <groupId>org.slf4j</groupId> 
    115152                        <artifactId>slf4j-jcl</artifactId> 
Note: See TracChangeset for help on using the changeset viewer.