Skip to content

Commit

Permalink
added first release on maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
nileshkhaire committed Feb 7, 2021
1 parent 1b09845 commit 77d2a70
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
2 changes: 1 addition & 1 deletion Source/baby-corn/babycorn-xml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.fervort.babycorn</groupId>
<artifactId>baby-corn</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>babycorn-xml</artifactId>
<name>Baby corn XML library</name>
Expand Down
116 changes: 105 additions & 11 deletions Source/baby-corn/pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,106 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.fervort.babycorn</groupId>
<artifactId>baby-corn</artifactId>
<version>0.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Baby corn parent project</name>
<description>Baby corn parent project</description>
<modules>
<module>babycorn-xml</module>
</modules>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.fervort.babycorn</groupId>
<artifactId>baby-corn</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>BabyCorn</name>
<description>Baby corn project is collection of projects like BabyCorn XML</description>
<url>https://github.com/nileshkhaire/BabyCorn</url>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<name>Nilesh Khaire</name>
<email>[email protected]</email>
<organization></organization>
<organizationUrl>https://github.com/nileshkhaire</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/nileshkhaire/BabyCorn.git</connection>
<developerConnection>scm:git:ssh://github.com:nileshkhaire/BabyCorn.git</developerConnection>
<url>https://github.com/nileshkhaire/BabyCorn</url>
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<modules>
<module>babycorn-xml</module>
</modules>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 77d2a70

Please sign in to comment.