[prev in list] [next in list] [prev in thread] [next in thread] 

List:       jibx-cvs
Subject:    [Jibx-cvs] maven-jibx-plugin pom.xml,1.12,1.13
From:       Jerome Bernard <jeje () users ! sourceforge ! net>
Date:       2009-07-27 14:53:41
Message-ID: E1MVRa9-0006wH-HC () fdv4jf1 ! ch3 ! sourceforge ! com
[Download RAW message or body]

Update of /cvsroot/jibx/maven-jibx-plugin
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv26663

Modified Files:
	pom.xml 
Log Message:
Added support for XSD->Java tool. Improved documentation.

Index: pom.xml
===================================================================
RCS file: /cvsroot/jibx/maven-jibx-plugin/pom.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** pom.xml	16 Mar 2009 09:01:43 -0000	1.12
--- pom.xml	27 Jul 2009 14:53:39 -0000	1.13
***************
*** 1,120 ****
  <?xml version="1.0" encoding="UTF-8"?>
! <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">
!   <modelVersion>4.0.0</modelVersion>
!   <groupId>org.jibx</groupId>
!   <artifactId>maven-jibx-plugin</artifactId>
!   <version>1.2.1</version>
!   <packaging>maven-plugin</packaging>
!   <name>Maven JiBX Plugin</name>
!   <organization>
!     <name>JiBX Project</name>
!     <url>http://jibx.sf.net/</url>
!   </organization>
!   <inceptionYear>2005</inceptionYear>
!   <licenses>
!     <license>
!       <name>BSD License</name>
!       <url>http://jibx.sf.net/LICENSE.txt</url>
!     </license>
!   </licenses>
!   <url>http://jibx.sf.net/maven-jibx-plugin/</url>
!   <description>A plugin for Maven 2 to run the JiBX binding compiler.</description>
!   <developers>
!     <developer>
!       <id>abrenk</id>
!       <name>Andreas Brenk</name>
!       <email>mail@andreasbrenk.com</email>
!       <url>http://andreasbrenk.com/</url>
!       <timezone>+01</timezone>
!     </developer>
!   </developers>
!   <contributors>
!     <contributor>
!       <name>Frank Mena</name>
!       <email>frankm.os@gmail.com</email>
!       <timezone>-08</timezone>
!     </contributor>
!     <contributor>
!       <name>Jerome Bernard</name>
!       <email>jerome.bernard@gmail.com</email>
!       <timezone>+1</timezone>
!     </contributor>
!   </contributors>
!   <dependencies>
!     <dependency>
!       <groupId>org.apache.maven</groupId>
!       <artifactId>maven-plugin-api</artifactId>
!       <version>2.0</version>
!     </dependency>
!     <dependency>
!       <groupId>org.apache.maven</groupId>
!       <artifactId>maven-project</artifactId>
!       <version>2.0</version>
!     </dependency>
!     <dependency>
!       <groupId>org.jibx</groupId>
!       <artifactId>jibx-bind</artifactId>
!       <version>1.2.1</version>
!     </dependency>
!     <dependency>
!       <groupId>org.jibx</groupId>
!       <artifactId>jibx-run</artifactId>
!       <version>1.2.1</version>
!     </dependency>
!     <dependency>
!       <groupId>oro</groupId>
!       <artifactId>oro</artifactId>
!       <version>2.0.8</version>
!     </dependency>
!     <dependency>
!       <groupId>xpp3</groupId>
!       <artifactId>xpp3</artifactId>
!       <version>1.1.3.3</version>
!     </dependency>
!     <dependency>
!       <groupId>commons-io</groupId>
!       <artifactId>commons-io</artifactId>
!       <version>1.1</version>
!     </dependency>
!   </dependencies>
!   <distributionManagement>
!     <repository>
!       <id>sourceforge.net</id>
!       <url>scp://web.sourceforge.net/home/groups/j/ji/jibx/htdocs/maven2</url>
!     </repository>
!     <site>
!       <id>sourceforge.net</id>
!       <url>scp://web.sourceforge.net/home/groups/j/ji/jibx/htdocs/maven-jibx-plugin</url>
                
!     </site>
!   </distributionManagement>
!   <issueManagement>
!     <system>jira</system>
!     <url>http://jira.codehaus.org/browse/JIBX</url>
!   </issueManagement>
!   <reporting>
!     <plugins>
!       <plugin>
!         <groupId>org.apache.maven.plugins</groupId>
!         <artifactId>maven-project-info-reports-plugin</artifactId>
!       </plugin>
!     </plugins>
!   </reporting>
!   <repositories>
!     <repository>
!       <id>jibx.sf.net</id>
!       <name>JiBX repository</name>
!       <url>http://jibx.sf.net/maven2</url>
!       <releases>
!         <updatePolicy>never</updatePolicy>
!       </releases>
!       <snapshots>
!         <enabled>false</enabled>
!       </snapshots>
!     </repository>
!   </repositories>
!   <scm>
!     <connection>scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/jibx:maven-jibx-plugin</connection>
                
!     <developerConnection>scm:cvs:ext:developername@cvs.sourceforge.net:/cvsroot/jibx:maven-jibx-plugin</developerConnection>
                
!     <url>http://cvs.sourceforge.net/viewcvs.py/jibx/maven-jibx-plugin/</url>
!   </scm>
  </project>
--- 1,173 ----
  <?xml version="1.0" encoding="UTF-8"?>
! <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">
!     <modelVersion>4.0.0</modelVersion>
!     <groupId>org.jibx</groupId>
!     <artifactId>maven-jibx-plugin</artifactId>
!     <version>1.2.1</version>
!     <packaging>maven-plugin</packaging>
!     <name>Maven JiBX Plugin</name>
!     <organization>
!         <name>JiBX Project</name>
!         <url>http://jibx.sf.net/</url>
!     </organization>
!     <inceptionYear>2005</inceptionYear>
!     <licenses>
!         <license>
!             <name>BSD License</name>
!             <url>http://jibx.sf.net/LICENSE.txt</url>
!         </license>
!     </licenses>
!     <url>http://jibx.sf.net/maven-jibx-plugin/</url>
!     <description>A plugin for Maven 2 to run the JiBX binding compiler, or generate \
                Java sources from XSD schemas.</description>
!     <developers>
!         <developer>
!             <id>abrenk</id>
!             <name>Andreas Brenk</name>
!             <email>mail@andreasbrenk.com</email>
!             <url>http://andreasbrenk.com/</url>
!             <timezone>+01</timezone>
!         </developer>
!     </developers>
!     <contributors>
!         <contributor>
!             <name>Frank Mena</name>
!             <email>frankm.os@gmail.com</email>
!             <timezone>-08</timezone>
!         </contributor>
!         <contributor>
!             <name>Jerome Bernard</name>
!             <email>jerome.bernard@gmail.com</email>
!             <timezone>+1</timezone>
!         </contributor>
!     </contributors>
!     <dependencies>
!         <dependency>
!             <groupId>org.apache.maven</groupId>
!             <artifactId>maven-plugin-api</artifactId>
!             <version>2.0</version>
!         </dependency>
!         <dependency>
!             <groupId>org.apache.maven</groupId>
!             <artifactId>maven-project</artifactId>
!             <version>2.0</version>
!         </dependency>
!         <dependency>
!             <groupId>${pom.groupId}</groupId>
!             <artifactId>jibx-tools</artifactId>
!             <version>${pom.version}</version>
!         </dependency>
!         <dependency>
!             <groupId>${pom.groupId}</groupId>
!             <artifactId>jibx-bind</artifactId>
!             <version>${pom.version}</version>
!         </dependency>
!         <dependency>
!             <groupId>${pom.groupId}</groupId>
!             <artifactId>jibx-extras</artifactId>
!             <version>${pom.version}</version>
!         </dependency>
!         <dependency>
!             <groupId>${pom.groupId}</groupId>
!             <artifactId>jibx-run</artifactId>
!             <version>${pom.version}</version>
!         </dependency>
!         <dependency>
!             <groupId>oro</groupId>
!             <artifactId>oro</artifactId>
!             <version>2.0.8</version>
!         </dependency>
!         <dependency>
!             <groupId>xpp3</groupId>
!             <artifactId>xpp3</artifactId>
!             <version>1.1.3.3</version>
!         </dependency>
!         <dependency>
!             <groupId>commons-io</groupId>
!             <artifactId>commons-io</artifactId>
!             <version>1.1</version>
!         </dependency>
! 
!         <!-- Eclipse dependencies -->
!         <dependency>
!             <groupId>org.eclipse.jdt</groupId>
!             <artifactId>core</artifactId>
!             <version>3.3.0-v_771</version>
!             <exclusions>
!                 <exclusion>
!                     <groupId>org.eclipse.equinox</groupId>
!                     <artifactId>common</artifactId>
!                 </exclusion>
!                 <exclusion>
!                     <groupId>org.eclipse.equinox</groupId>
!                     <artifactId>app</artifactId>
!                 </exclusion>
!             </exclusions>
!         </dependency>
!         <dependency>
!             <groupId>org.eclipse.equinox</groupId>
!             <artifactId>common</artifactId>
!             <version>3.3.0-v20070426</version>
!         </dependency>
! 
!         <dependency>
!             <groupId>log4j</groupId>
!             <artifactId>log4j</artifactId>
!             <version>1.2.15</version>
!             <exclusions>
!                 <exclusion>
!                     <groupId>com.sun.jmx</groupId>
!                     <artifactId>jmxri</artifactId>
!                 </exclusion>
!                 <exclusion>
!                     <groupId>com.sun.jdmk</groupId>
!                     <artifactId>jmxtools</artifactId>
!                 </exclusion>
!             </exclusions>
!         </dependency>
!     </dependencies>
!     <distributionManagement>
!         <repository>
!             <id>sourceforge.net</id>
!             <url>scp://shell.sourceforge.net/home/groups/j/ji/jibx/htdocs/maven2</url>
                
!         </repository>
!         <site>
!             <id>sourceforge.net</id>
!             <url>scp://shell.sourceforge.net/home/groups/j/ji/jibx/htdocs/maven-jibx-plugin</url>
                
!         </site>
!     </distributionManagement>
!     <issueManagement>
!         <system>jira</system>
!         <url>http://jira.codehaus.org/browse/JIBX</url>
!     </issueManagement>
!     <reporting>
!         <plugins>
!             <plugin>
!                 <groupId>org.apache.maven.plugins</groupId>
!                 <artifactId>maven-project-info-reports-plugin</artifactId>
!             </plugin>
!             <plugin>
!                 <groupId>org.apache.maven.plugins</groupId>
!                 <artifactId>maven-plugin-plugin</artifactId>
!             </plugin>
!         </plugins>
!     </reporting>
!     <repositories>
!         <repository>
!             <id>jibx.sf.net</id>
!             <name>JiBX repository</name>
!             <url>http://jibx.sf.net/maven2</url>
!             <releases>
!                 <updatePolicy>never</updatePolicy>
!             </releases>
!             <snapshots>
!                 <enabled>false</enabled>
!             </snapshots>
!         </repository>
!     </repositories>
!     <scm>
!         <connection>scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/jibx:maven-jibx-plugin</connection>
                
!         <developerConnection>scm:cvs:ext:developername@cvs.sourceforge.net:/cvsroot/jibx:maven-jibx-plugin</developerConnection>
                
!         <url>http://cvs.sourceforge.net/viewcvs.py/jibx/maven-jibx-plugin/</url>
!     </scm>
  </project>


------------------------------------------------------------------------------
_______________________________________________
Jibx-cvs mailing list
Jibx-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-cvs


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic