globallink-connect-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.translations.globallink</groupId> <artifactId>globallink-connect-api</artifactId> <version>4.18.4</version> </dependency>
<?xml version="1.0"?> <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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.translations.globallink</groupId> <artifactId>globallink-connect-api</artifactId> <version>4.18.4</version> <packaging>jar</packaging> <name>GlobalLink Client Library</name> <description>GlobalLink Connect Java is a library to connect your system to GlobalLink Project Director SOAP API.</description> <url>http://www.translations.com/globallink/products/globallink_connect.html</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers /> <scm> <connection>scm:git:https://github.com/translations-com/globallink-connect-api-java</connection> <developerConnection>scm:git:https://github.com/translations-com/globallink-connect-api-java.git</developerConnection> <url>https://github.com/translations-com/globallink-connect-api-jav</url> </scm> <properties> <versionPackageName>org.gs4tr.projectdirector.adaptors.glcl.java</versionPackageName> <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss.SSSZ</maven.build.timestamp.format> <projectdirector.version>4.13.0_RC1</projectdirector.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <releaseControl.version>2.0.32</releaseControl.version> </properties> <dependencies> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.11.2</version> </dependency> <dependency> <groupId>com.helger</groupId> <artifactId>ph-css</artifactId> <version>6.1.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>javadoc_java8</id> <activation> <jdk>1.8</jdk> </activation> <build> <pluginManagement> <plugins> <!-- This is for java8 to work with javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>new-timestamp-property</id> <phase>compile</phase> <goals> <goal>timestamp-property</goal> </goals> <configuration> <name>newTimestamp</name> <!--pattern>yyyyMMdd</pattern --> <pattern>MMdd</pattern> <locale>en_US</locale> </configuration> </execution> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>target/generated-sources</source> </sources> </configuration> </execution> </executions> </plugin> <!--<groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <_nouses>true</_nouses> <Bundle-Version>${version}-${maven.build.timestamp}</Bundle-Version> <Bundle-Vendor>GS4TR</Bundle-Vendor> <Bundle-ClassPath>.</Bundle-ClassPath> <Bundle-Localization>plugin</Bundle-Localization> <Bundle-Name>GLC SOAP Services Client Plug-in</Bundle-Name> <Bundle-ManifestVersion>2</Bundle-ManifestVersion> <Bundle-SymbolicName>org.gs4tr.glc.restclient</Bundle-SymbolicName> <Eclipse-LazyStart>false</Eclipse-LazyStart> <Import-Package>* </Import-Package> <Export-Package>com.globallink.api, com.globallink.api.config, com.globallink.api.model, org.gs4tr.projectdirector.model.dto.xsd, org.gs4tr.projectdirector.ws.headers org.gs4tr.projectdirector.ws.service.services.impl org.ws._2005._05.xmlmime </Export-Package> </instructions> </configuration> <extensions>true</extensions> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>bundle</goal> </goals> </execution> </executions> </plugin>--> <!-- not needed --> <!--<plugin> <groupId>org.gs4tr.maven.plugins</groupId> <artifactId>gs4tr-maven-version-plugin</artifactId> <version>${releaseControl.version}</version> <extensions>true</extensions> <configuration> <skipArtifacts> <skipArtifact> maven-eclipse-plugin </skipArtifact> </skipArtifacts> </configuration> <executions> <execution> <goals> <goal>version</goal> </goals> </execution> </executions> </plugin>--> <!--Doc plugins --> <!--<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <quiet>true</quiet> <nonavbar>true</nonavbar> <notree>true</notree> <nocomment>true</nocomment> <nohelp>true</nohelp> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin>--> </plugins> </build> <distributionManagement> <!-- Repository for snapshots --> <!--<repository> <name>Snapshots Repository</name> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository>--> <!-- Repository for releases --> <repository> <id>nexus-releases</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>