UNPKG

sg-socket-constants

Version:
117 lines (100 loc) 3.62 kB
<!-- Copyright 2017 realglobe Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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>jp.realglobe</groupId> <artifactId>sg-socket-constants</artifactId> <packaging>jar</packaging> <version>1.7.0</version> <name>SG Socket Constants</name> <description>Constants variables for socket</description> <url>https://github.com/realglobe-Inc/sg-socket-constants#readme</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Daisuke Fukuchi</name> <email>fukuchidaisuke@realglobe.jp</email> <organization>realglobe Inc.</organization> <organizationUrl>http://realglobe.jp/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/realglobe-Inc/sg-socket-constants.git</connection> <developerConnection>scm:git:ssh://github.com:realglobe-Inc/sg-socket-constants.git</developerConnection> <url>https://github.com/realglobe-Inc/sg-socket-constants</url> </scm> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <inherited>true</inherited> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.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>2.10.4</version> <configuration> <source>${java.version}</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> </plugins> </build> <distributionManagement> <repository> <id>bintray-realglobe-maven</id> <name>realglobe-maven</name> <url>https://api.bintray.com/maven/realglobe/maven/${project.artifactId}/;publish=1</url> </repository> </distributionManagement> </project>