chargebee-java
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.chargebee</groupId> <artifactId>chargebee-java</artifactId> <version>3.26.0</version> </dependency>
<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>com.chargebee</groupId> <artifactId>chargebee-java</artifactId> <version>3.26.0</version> <packaging>jar</packaging> <name>ChargeBee Java</name> <description>Java client library for ChargeBee API</description> <url>https://github.com/chargebee/chargebee-java</url> <organization> <name>ChargeBee</name> <url>http://www.chargebee.com</url> </organization> <scm> <connection>scm:git:git@github.com:chargebee/chargebee-java.git</connection> <developerConnection>scm:git:git@github.com:chargebee/chargebee-java.git</developerConnection> <url>https://github.com/chargebee/chargebee-java.git</url> </scm> <developers> <developer> <id>kps</id> <name>KP Saravanan</name> <email>kps@chargebee.com</email> <timezone>+5:30</timezone> </developer> <developer> <id>thiyagu</id> <name>T Thiyagarajan</name> <email>thiyagu@chargebee.com</email> <timezone>+5:30</timezone> </developer> </developers> <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> </properties> <dependencies> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20231013</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.16.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <build> <resources> <resource> <directory>.</directory> <includes> <include>LICENSE</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <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.1</version> <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> <version>3.5.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>jarjar-maven-plugin</artifactId> <version>1.9</version> <executions> <execution> <phase>package</phase> <goals> <goal>jarjar</goal> </goals> <configuration> <includes> <include>org.json:json</include> <include>commons-codec:commons-codec</include> <include>com.chargebee</include> </includes> <rules> <rule> <pattern>org.json.*</pattern> <result>com.chargebee.org.json.@1</result> </rule> <rule> <pattern>org.apache.commons.**</pattern> <result>com.chargebee.org.apache.commons.@1</result> </rule> <keep> <pattern>org.json.JSON*</pattern> </keep> <keep> <pattern>com.chargebee.**</pattern> </keep> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>