Changeset a19cac2195024dc9992fa582eeb4701602695003

Show
Ignore:
Timestamp:
03/15/08 13:27:35 (4 months ago)
Author:
Filippo Carone <littlejohn@videolan.org>
git-committer:
Filippo Carone <littlejohn@videolan.org> 1205584055 +0100
git-parent:

[2d22d0e2f33e7e617a49417418102e3105c038c1]

git-author:
Adrien Grand <jpountz@jpountz.net> 1205584026 +0100
Message:

[PATCH] - maven project structure reorganization - add a exec:java goal to launch the VlcClient?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bindings/java/pom.xml

    r7903384 ra19cac2  
    33  <modelVersion>4.0.0</modelVersion> 
    44  <groupId>org.videolan</groupId> 
    5   <artifactId>jvlc</artifactId> 
    6   <packaging>jar</packaging> 
     5  <artifactId>jvlc-parent</artifactId> 
     6  <packaging>pom</packaging> 
    77  <name>JVLC</name> 
    88  <description>Java Bindings for VideoLAN</description> 
    99  <version>0.9.0-SNAPSHOT</version> 
    10    <build> 
    11     <plugins> 
    12       <plugin> 
    13         <artifactId>maven-compiler-plugin</artifactId> 
    14         <configuration> 
    15           <source>1.6</source> 
    16           <target>1.6</target> 
    17         </configuration> 
    18       </plugin> 
    19     </plugins> 
    20   </build> 
    2110  <licenses> 
    22   <license> 
    23        <name>GPLv2</name> 
    24        <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url> 
    25   </license> 
     11    <license> 
     12      <name>GPLv2</name> 
     13      <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url> 
     14    </license> 
    2615  </licenses> 
    27   <dependencies> 
    28     <dependency> 
    29       <groupId>com.jna</groupId> 
    30       <artifactId>jna</artifactId> 
    31       <version>3.0.2</version> 
    32     </dependency> 
    33     <dependency> 
    34       <groupId>junit</groupId> 
    35       <artifactId>junit</artifactId> 
    36       <version>4.4</version> 
    37       <scope>test</scope> 
    38     </dependency> 
    39   </dependencies> 
    40   <repositories> 
    41     <repository> 
    42       <id>jvlc</id> 
    43       <name>JVLC Maven Repository</name> 
    44       <url>http://jvlc.ihack.it/maven2</url> 
    45       <snapshots> 
    46         <enabled>false</enabled> 
    47       </snapshots> 
    48     </repository> 
    49   </repositories></project> 
     16  <modules> 
     17    <module>core</module> 
     18    <module>samples</module> 
     19  </modules> 
     20</project>