dub-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.singingbush</groupId> <artifactId>dub-client</artifactId> <version>0.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.singingbush</groupId> <artifactId>dub-client</artifactId> <version>0.3.0</version> <name>DUB Client</name> <description>Conveniently call the REST API on code.dlang.org and other DUB repositories</description> <url>https://github.com/SingingBush/dubclient</url> <inceptionYear>2018</inceptionYear> <licenses> <license> <name>GNU Lesser General Public License, Version 2.1</name> <url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Samael Bate</name> <email>samael@singingbush.com</email> <organization>SingingBush</organization> <organizationUrl>https://singingbush.com</organizationUrl> <roles> <role>author</role> </roles> </developer> </developers> <scm> <connection>scm:git:git://github.com/SingingBush/dubclient.git</connection> <developerConnection>scm:git:ssh://github.com:SingingBush/dubclient.git</developerConnection> <url>https://github.com/SingingBush/dubclient/tree/main</url> </scm> <issueManagement> <system>github</system> <url>https://github.com/SingingBush/dubclient/issues</url> </issueManagement> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <slf4j.version>2.0.7</slf4j.version> <junit.version>5.9.3</junit.version> </properties> <dependencies> <dependency> <groupId>com.singingbush</groupId> <artifactId>sdlang</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>24.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.14</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.10.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.11.0</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.10</version> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>8.2.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <!--<configuration>--> <!--<repoToken> HANDLED BY TRAVIS ENVIRONMENT VARIABLE </repoToken>--> <!--</configuration>--> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-java</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <!-- <requireJavaVersion>--> <!-- <version>[11,)</version>--> <!-- <message>Invalid Java version. It has to be 11 or higher</message>--> <!-- </requireJavaVersion>--> <requireMavenVersion> <version>[3.8,)</version> <message>Invalid Maven version. It should, at least, be 3.8</message> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> <configuration> <failBuildOnCVSS>10</failBuildOnCVSS> <skipTestScope>true</skipTestScope> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.0.0</version> <executions> <execution> <id>add-third-party</id> <phase>compile</phase> <goals> <goal>add-third-party</goal> </goals> <configuration> <includeTransitiveDependencies>true</includeTransitiveDependencies> </configuration> </execution> </executions> <configuration> <failOnMissing>true</failOnMissing> <excludedLicenses>GPLv2|GPLv3</excludedLicenses> <failOnBlacklist>true</failOnBlacklist> <licenseMerges> <licenseMerge>GPLv2 + Classpath Exception| GPL-2.0-with-classpath-exception| GNU General Public License v2.0 w/Classpath exception| GNU General Public License, version 2 (GPL2), with the classpath exception</licenseMerge> <licenseMerge>GPLv2|GPLv2.0| GNU General Public License, version 2| GNU General Public License, version 2.0</licenseMerge> <licenseMerge>GPLv3|GPLv3.0| GNU General Public License, version 3| GNU General Public License v3.0</licenseMerge> <licenseMerge>LGPLv2|LGPLv2.0|LGPL-2.0| GNU Library General Public License, version 2.0</licenseMerge> <licenseMerge>LGPLv2.1|LGPL-2.1| GNU Lesser General Public License v2.1| GNU Lesser General Public License, Version 2.1</licenseMerge> <licenseMerge>LGPLv3|LGPLv3.0|LGPL-3.0| GNU Lesser General Public License v3.0</licenseMerge> <licenseMerge>Apache License, Version 2.0| The Apache Software License, Version 2.0|Apache2| Apache-2.0|Apache 2|APL2|Apache 2.0| The Apache License, Version 2.0|Apache Software License - Version 2.0| the Apache License, ASL Version 2.0|ASL 2.0|Apache License 2.0|ASL, version 2 </licenseMerge> <licenseMerge>BSD 3-Clause License|BSD License 2.0|BSD-3-Clause|BSD License 3|3-Clause BSD License</licenseMerge> <licenseMerge>Common Development and Distribution License (CDDL)| Common Development and Distribution License 1.0| CDDL-1.0|CDDL</licenseMerge> <licenseMerge>Eclipse Public License 1.0| Eclipse Public License v1.0|EPL-1.0|Eclipse Public License, Version 1.0</licenseMerge> <licenseMerge>Eclipse Public License 2.0| Eclipse Public License v2.0|EPL-2.0|Eclipse Public License, Version 2.0</licenseMerge> <licenseMerge>The MIT License|MIT license|The MIT License (MIT)|MIT License|MIT|MIT-style</licenseMerge> </licenseMerges> <includedLicenses> <includedLicense>Apache License, Version 2.0</includedLicense> <includedLicense>The MIT License</includedLicense> <includedLicense>LGPLv2.1</includedLicense> <includedLicense>Eclipse Public License 2.0</includedLicense> </includedLicenses> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <tags> <tag> <name>apiNote</name> <placement>a</placement> <head>API Note:</head> </tag> </tags> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <configuration> <keyname>6E394A59C56281A1C7BCB31CBB1163024293DF16</keyname> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>package</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jpms</id> <activation> <jdk>[9,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>compile-java9</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <release>9</release> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot> </compileSourceRoots> <multiReleaseOutput>true</multiReleaseOutput> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>