jtelebot-models
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.shib.java.lib</groupId> <artifactId>jtelebot-models</artifactId> <version>2.1</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>me.shib.java.lib</groupId> <artifactId>jtelebot-models</artifactId> <version>2.1</version> <name>JTeleBot Models</name> <description>The data models used by JTeleBot - Telegram Bot API</description> <url>https://github.com/shibme/jtelebot-models</url> <issueManagement> <url>https://github.com/shibme/jtelebot-models/issues</url> <system>GitHub Issues</system> </issueManagement> <scm> <url>https://github.com/shibme/jtelebot-models</url> <connection>scm:git:https://github.com/shibme/jtelebot-models.git</connection> <developerConnection>scm:git:shibme@github.com:shibme/jtelebot-models.git</developerConnection> </scm> <developers> <developer> <email>shibly.meeran@gmail.com</email> <name>Shibly Meeran</name> <url>https://github.com/shibme</url> <id>shibme</id> </developer> </developers> <licenses> <license> <name>GNU General Public License</name> <url>http://www.gnu.org/licenses/gpl.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <distributionManagement> <repository> <id>bintray-shibme-maven</id> <name>shibme-maven</name> <url>https://api.bintray.com/maven/shibme/maven/${project.artifactId}/;publish=1;override=1</url> </repository> </distributionManagement> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>de.jutzig</groupId> <artifactId>github-release-plugin</artifactId> <version>1.1.1</version> <executions> <execution> <id>github-upload</id> <phase>deploy</phase> <goals> <goal>release</goal> </goals> <inherited>false</inherited> <configuration> <overwriteArtifact>true</overwriteArtifact> <releaseName>${project.artifactId}-${project.version}</releaseName> <description>Might require transitive dependencies. Please take a look into pom.xml if you plan to use it manually. It is recommended to use as maven dependency to avoid issues. </description> <tag>${project.version}</tag> <fileSets> <fileSet> <directory>${project.build.directory}</directory> </fileSet> </fileSets> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </project>