<!-- central sync requirements 
https://docs.sonatype.org/display/Repository/Central+Sync+Requirements

https://docs.sonatype.org/display/Repository/Uploading+3rd-party+Artifacts+to+The+Central+Repository

https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide

If the project packaging is jar, and the jar file contains java classes, there must be a -javadoc.jar for main artifact.
If the project packaging is jar, and the jar file contains java classes, there must be a -sources.jar for main artifact.
All project artifacts are signed using GPG, and the public key is distributed to 
hkp://pool.sks-keyservers.net/. For more information, please refer to How To Generate PGP Signatures With Maven.

bundle.jar
pom.xml
pom.xml.asc
foo-1.0.jar
foo-1.0.jar.asc
foo-1.0-sources.jar
foo-1.0-sources.jar.asc
foo-1.0-javadoc.jar
foo-1.0-javadoc.jar.asc

para firmar gpg -ab FILE

meter todo en bundle.jar y despues:
login en oss.sonatype.org
seleccionar staging upload y 'artifact bundle' subir jar esperar mail confirmacion

ref:
https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-7b.StageExistingArtifacts

If successful, you will get an e-mail telling you if your artifacts are successfully staged and verified. 
-->

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.prowidesoftware</groupId>
  <artifactId>pw-swift-core</artifactId>
  <version>SRU2013-7.5</version>
  <packaging>jar</packaging>

  <name>Prowide Core</name>
  <description>Prowide Core Libraries for SWIFT (TM) messages</description>
  <url>http://www.prowidesoftware.com</url>

  <licenses>
    <license>
    
      <name>GNU Library or Lesser General Public License version 2.0 (LGPLv2)</name>
      <url>https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <url>http://wife.cvs.sourceforge.net/wife</url>
    <connection>:pserver:anonymous@wife.cvs.sourceforge.net:/cvsroot/wife</connection>
  </scm>

 <developers>
    <developer>
      <id>zubri</id>
      <name>Sebastian Zubrinic</name>
      <email>zubri@users.sourceforge.net</email>
    </developer>
    <developer>
      <id>mgriffa</id>
      <name>Miguel Griffa</name>
      <email>mikkey@users.sourceforge.net</email>
    </developer>
  </developers>
  
  <dependencies>
	<dependency>
		<groupId>commons-lang</groupId>
		<artifactId>commons-lang</artifactId>
		<version>2.6</version>
		<scope>runtime</scope>
	</dependency>
    <dependency>
		<groupId>rhino</groupId>
		<artifactId>js</artifactId>
		<version>1.7R2</version>
		<scope>runtime</scope>
    </dependency>
  </dependencies>

</project>
