Skip to content

Commit 9eceda4

Browse files
[release] auto-merge released main back to dev
2 parents a33e710 + 7067948 commit 9eceda4

2 files changed

Lines changed: 31 additions & 5 deletions

File tree

pom.xml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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">
43
<modelVersion>4.0.0</modelVersion>
54

65
<groupId>net.osslabz</groupId>
76
<artifactId>paapi5-java-sdk</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
7+
<version>0.0.3-SNAPSHOT</version>
98

109
<name>${project.groupId}:${project.artifactId}</name>
11-
<description></description>
10+
11+
<description>Repackaged version of Amazon's Product Advertising API 5.0 Java SDK</description>
1212
<url>https://github.com/osslabz/paapi5-java-sdk</url>
1313

1414
<properties>
@@ -18,7 +18,7 @@
1818
<project.build.sourceEncoding>${osslabz.encoding}</project.build.sourceEncoding>
1919
<project.reporting.outputEncoding>${osslabz.encoding}</project.reporting.outputEncoding>
2020

21-
<project.build.outputTimestamp>2025-03-20T12:58:22Z</project.build.outputTimestamp>
21+
<project.build.outputTimestamp>2025-06-25T08:01:24Z</project.build.outputTimestamp>
2222

2323
<maven.compiler.release>${osslabz.java.version}</maven.compiler.release>
2424

@@ -33,6 +33,12 @@
3333
</licenses>
3434

3535
<developers>
36+
<developer>
37+
<name>Amazon Product Advertising API Team</name>
38+
<organization>Amazon</organization>
39+
<organizationUrl>https://github.com/amzn</organizationUrl>
40+
</developer>
41+
3642
<developer>
3743
<name>Raphael Vullriede</name>
3844
<email>raphael@osslabz.net</email>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package net.osslabz.paapi5;
2+
3+
/**
4+
* This project is just a re-packaged version of Repackaged version of Amazon's Product Advertising API 5.0 Java SDK since it is only available as a binary distribution.
5+
* <p>
6+
* The whole purpose is to be able to upload it to maven central for easier usage in Maven/gradle projects.
7+
*/
8+
public class ReadMe {
9+
10+
/**
11+
* This class and it's main method only exists to satisfy the maven central toolchain and expects (and enforces) the presence of javadoc and source files archives. Since the actual classes are extracted
12+
* from lib/paapi5-java-sdk.*.jar we need at least one class with source and javadoc that is not optimized away.
13+
*
14+
* @param args
15+
*/
16+
public static void main(String[] args) {
17+
18+
System.out.println("NO-OP");
19+
}
20+
}

0 commit comments

Comments
 (0)