Skip to content

Commit

Permalink
secon tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav-sengar committed Jul 2, 2018
1 parent 1b8df89 commit 64822ce
Show file tree
Hide file tree
Showing 7 changed files with 319 additions and 126 deletions.
267 changes: 202 additions & 65 deletions .idea/workspace.xml

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions null/.devnagri.yml

This file was deleted.

Binary file not shown.
171 changes: 115 additions & 56 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
<url>https://github.com/FourtekIT/devnagri-api-client-java/issues</url>
</issueManagement>

<ciManagement>
<!--<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/bernardo-mg/api</url>
<notifiers />
</ciManagement>
</ciManagement>-->

<distributionManagement>
<repository>
Expand All @@ -53,34 +53,55 @@
<name>Releases Repository</name>
<url>https://bintray.com/gauravsengar/maven-api/devnagri-api-client</url>
</repository>
<snapshotRepository>
<!--<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>snapshots</id>
<name>Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<url>https://bintray.com/gauravsengar/maven-api/devnagri-api-client</url>
</snapshotRepository>-->
</distributionManagement>

<repositories>
<!--<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
</repositories>-->

<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-gauravsengar-maven-api</id>
<name>bintray</name>
<url>https://gauravsengar.bintray.com/maven-api</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-gauravsengar-maven-api</id>
<name>bintray-plugins</name>
<url>https://gauravsengar.bintray.com/maven-api</url>
</pluginRepository>
</pluginRepositories>



<!-- ********************************************** -->
<!-- ****************** PROFILES ****************** -->
<!-- ********************************************** -->

<profiles>
<!--<profiles>
<profile>
<!-- Profile for the Eclipse Maven plugin -->
<!-- Sets the POM so this plugin does not give the usual unregistered goals
errors -->
<!-- It will be activated automatically on Eclipse if this has the m2e plugin,
by detecting the version property -->
&lt;!&ndash; Profile for the Eclipse Maven plugin &ndash;&gt;
&lt;!&ndash; Sets the POM so this plugin does not give the usual unregistered goals
errors &ndash;&gt;
&lt;!&ndash; It will be activated automatically on Eclipse if this has the m2e plugin,
by detecting the version property &ndash;&gt;
<id>eclipse-maven</id>
<activation>
<property>
Expand All @@ -91,22 +112,22 @@
<pluginManagement>
<plugins>
<plugin>
<!-- m2e lifecycle mapping -->
<!-- This is used to configure the Maven plugin for Eclipse. -->
<!-- Among other things, it allows registering goals, which
Eclipse would otherwise reject. -->
<!-- It has no real effect on Maven. -->
&lt;!&ndash; m2e lifecycle mapping &ndash;&gt;
&lt;!&ndash; This is used to configure the Maven plugin for Eclipse. &ndash;&gt;
&lt;!&ndash; Among other things, it allows registering goals, which
Eclipse would otherwise reject. &ndash;&gt;
&lt;!&ndash; It has no real effect on Maven. &ndash;&gt;
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>${plugin.lifecycle.version}</version>
<configuration>
<!-- Sample fix for plugin executions. -->
<!-- This is to be used in case a Maven plugin gives problems
in Eclipse -->
<!-- <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution>
&lt;!&ndash; Sample fix for plugin executions. &ndash;&gt;
&lt;!&ndash; This is to be used in case a Maven plugin gives problems
in Eclipse &ndash;&gt;
&lt;!&ndash; <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution>
<pluginExecutionFilter> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId>
<versionRange>[0.5,)</versionRange> <goals> <goal>prepare-agent</goal> </goals> </pluginExecutionFilter>
<action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> -->
<action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> &ndash;&gt;
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
Expand All @@ -115,49 +136,75 @@
</pluginManagement>
</build>
</profile>
<!-- ============================================== -->
<!-- ============ DEPLOYMENT PROFILES ============= -->
<!-- ============================================== -->
&lt;!&ndash; ============================================== &ndash;&gt;
&lt;!&ndash; ============ DEPLOYMENT PROFILES ============= &ndash;&gt;
&lt;!&ndash; ============================================== &ndash;&gt;
<profile>
<!-- Release deployment profile. -->
<!-- Sets the site repository to point to the releases repo. -->
&lt;!&ndash; Release deployment profile. &ndash;&gt;
&lt;!&ndash; Sets the site repository to point to the releases repo. &ndash;&gt;
<id>deployment-release</id>
<activation>
<!-- Active by default so the repository appears in the reports. -->
&lt;!&ndash; Active by default so the repository appears in the reports. &ndash;&gt;
<activeByDefault>true</activeByDefault>
</activation>
<distributionManagement>
<site>
<id>site</id>
<name>Project Documentation Site</name>
<!-- The URL should be set externally -->
&lt;!&ndash; The URL should be set externally &ndash;&gt;
<url>${site.release.url}</url>
</site>
</distributionManagement>
</profile>
<profile>
<!-- Development deployment profile. -->
<!-- Sets the site repository to point to the development repo. -->
&lt;!&ndash; Development deployment profile. &ndash;&gt;
&lt;!&ndash; Sets the site repository to point to the development repo. &ndash;&gt;
<id>deployment-development</id>
<distributionManagement>
<site>
<id>site-development</id>
<name>Project Development Documentation Site</name>
<!-- The URL should be set externally -->
&lt;!&ndash; The URL should be set externally &ndash;&gt;
<url>${site.develop.url}</url>
</site>
</distributionManagement>
</profile>
<profile>
<!-- Deployment profile. -->
<!-- Sets ups the environment for deployment. -->
&lt;!&ndash; Deployment profile. &ndash;&gt;
&lt;!&ndash; Sets ups the environment for deployment. &ndash;&gt;
<id>deployment</id>
<properties>
<!-- Tests are skipped. -->
&lt;!&ndash; Tests are skipped. &ndash;&gt;
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
</profiles>
</profiles>-->

<profiles>
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-gauravsengar-maven-api</id>
<name>bintray</name>
<url>https://gauravsengar.bintray.com/maven-api</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-gauravsengar-maven-api</id>
<name>bintray-plugins</name>
<url>https://gauravsengar.bintray.com/maven-api</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>

<!-- ********************************************** -->
<!-- *********** ORGANIZATION AND MEMBERS ********* -->
Expand Down Expand Up @@ -205,7 +252,8 @@
<!-- ============================================== -->
<site.skin.version>1.2.0</site.skin.version>
<bintrayURL>https://bintray.com/gauravsengar/maven-api/devnagri-api-client/view</bintrayURL>
<mavenURL>http://mvnrepository.com/artifact/${project.groupId}/${project.artifactId}</mavenURL>
<mavenURL>http://mvnrepository.com</mavenURL>
<!--<mavenURL>http://mvnrepository.com/artifact/${project.groupId}/${project.artifactId}</mavenURL>-->
</properties>

<!-- ********************************************** -->
Expand Down Expand Up @@ -291,6 +339,7 @@
<!-- It is set to also validate the changes log file -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.12.1</version>
<executions>
<!-- Changes plugin is bound to the pre-site phase -->
<execution>
Expand All @@ -317,6 +366,7 @@
<!-- Generates the Maven Site -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
<dependencies>
<dependency>
<!-- Docs Maven Skin -->
Expand All @@ -327,37 +377,46 @@
</dependencies>
</plugin>
</plugins>
<!--added by me for removing error-->
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0-beta-7</version>
</extension>
</extensions>
</build>


<!-- ********************************************** -->
<!-- ****************** REPORTS ******************* -->
<!-- ********************************************** -->

<reporting>
<plugins>
<plugin>
<!-- Checkstyle -->
<!-- Checks that the source files comply with style standards -->
<!-- It is using a customized rules file -->
<!--<plugin>
&lt;!&ndash; Checkstyle &ndash;&gt;
&lt;!&ndash; Checks that the source files comply with style standards &ndash;&gt;
&lt;!&ndash; It is using a customized rules file &ndash;&gt;
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<!-- The customized rules file -->
&lt;!&ndash; The customized rules file &ndash;&gt;
<configLocation>${project.basedir}/src/config/checkstyle/checkstyle-rules.xml</configLocation>
<!-- Excludes generated code -->
&lt;!&ndash; Excludes generated code &ndash;&gt;
<excludes>**/generated/**/*</excludes>
</configuration>
</plugin>
<plugin>
<!-- FindBugs -->
<!-- Checks for patterns which are prone to errors -->
</plugin>-->
<!--<plugin>
&lt;!&ndash; FindBugs &ndash;&gt;
&lt;!&ndash; Checks for patterns which are prone to errors &ndash;&gt;
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<!-- Exclusion patterns -->
&lt;!&ndash; Exclusion patterns &ndash;&gt;
<excludeFilterFile>${project.basedir}/src/config/findbugs/findbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
</plugin>-->
<plugin>
<!-- Javadoc -->
<!-- Generates the javadocs -->
Expand All @@ -370,22 +429,22 @@
</sourceFileExcludes>
</configuration>
</plugin>
<plugin>
<!-- PMD -->
<!-- Checks that the code complies with a series of code quality rules -->
<!-- <plugin>
&lt;!&ndash; PMD &ndash;&gt;
&lt;!&ndash; Checks that the code complies with a series of code quality rules &ndash;&gt;
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<rulesets>
<!-- The customized rules file -->
&lt;!&ndash; The customized rules file &ndash;&gt;
<ruleset>${project.basedir}/src/config/pmd/pmd-rules.xml</ruleset>
</rulesets>
<excludes>
<!-- Excludes generated code -->
&lt;!&ndash; Excludes generated code &ndash;&gt;
<exclude>**/generated/**/*</exclude>
</excludes>
</configuration>
</plugin>
</plugin>-->
</plugins>
</reporting>

Expand Down
Binary file removed target/devnagri-api-client-1.0-SNAPSHOT.jar
Binary file not shown.
Binary file removed target/devnagri-api-client-1.0.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions target/maven-archiver/pom.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Generated by Maven
#Tue Jun 26 11:31:11 IST 2018
version=1.0
#Fri Jun 29 17:48:23 IST 2018
version=1.0.1
groupId=com.devnagri
artifactId=devnagri-api-client

0 comments on commit 64822ce

Please sign in to comment.