Skip to content

Commit

Permalink
Fixing POM to use newer version of Jackson Databind. Also creating ex…
Browse files Browse the repository at this point in the history
…port of prebuilt JAR and dependencies to local folder
  • Loading branch information
chfabbro committed Feb 12, 2019
1 parent 757c59e commit 1268a34
Show file tree
Hide file tree
Showing 17 changed files with 66 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ libjava-edit-prod.sh
.mtj.tmp/

# Package Files #
*.jar
#*.jar
*.war
*.ear

Expand Down
Binary file added bin/libs/cloning-1.9.10.jar
Binary file not shown.
Binary file added bin/libs/commons-codec-1.9.jar
Binary file not shown.
Binary file added bin/libs/commons-logging-1.2.jar
Binary file not shown.
Binary file added bin/libs/httpclient-4.5.2.jar
Binary file not shown.
Binary file added bin/libs/httpcore-4.4.4.jar
Binary file not shown.
Binary file added bin/libs/httpmime-4.5.2.jar
Binary file not shown.
Binary file added bin/libs/jackson-annotations-2.9.0.jar
Binary file not shown.
Binary file added bin/libs/jackson-core-2.9.8.jar
Binary file not shown.
Binary file added bin/libs/jackson-databind-2.9.8.jar
Binary file not shown.
Binary file added bin/libs/json-20160810.jar
Binary file not shown.
Binary file added bin/libs/objenesis-2.6.jar
Binary file not shown.
Binary file added bin/libs/org.osgi.annotation.versioning-1.1.0.jar
Binary file not shown.
Binary file added bin/stock-api-1.0.3.jar
Binary file not shown.
68 changes: 65 additions & 3 deletions pom.xml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<packaging>bundle</packaging>
<version>1.0.3</version>
<name>Adobe Stock Apis SDK</name>
<description>A Java sdk for Adobe Stock APIs</description>
<description>A Java SDK for Adobe Stock APIs</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
Expand All @@ -23,7 +23,7 @@
<httpclient.version>4.5.2</httpclient.version>
<json.version>20160810</json.version>
<httpmime.version>4.5.2</httpmime.version>
<jacksondatabind.version>2.9.7</jacksondatabind.version>
<jacksondatabind.version>[2.9.8,)</jacksondatabind.version>
<cloning.version>1.9.10</cloning.version>
<commons.version>1.3.2</commons.version>
<compiler.version>3.6.1</compiler.version>
Expand Down Expand Up @@ -132,6 +132,37 @@
</dependency>
</dependencies>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-checkstyle-plugin
</artifactId>
<versionRange>
[2.17,)
</versionRange>
<goals>
<goal>check</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand All @@ -158,7 +189,7 @@
<version>${maven.dependency.version}</version>
<executions>
<execution>
<id>copy-dependencies</id>
<id>copy-dependencies-to-target</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
Expand All @@ -168,6 +199,37 @@
<includeScope>compile</includeScope>
</configuration>
</execution>
<execution>
<id>copy-dependencies-to-libs</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/bin/libs</outputDirectory>
<includeScope>compile</includeScope>
</configuration>
</execution>
<execution>
<id>copy-to-lib</id>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<overWrite>false</overWrite>
<outputDirectory>${project.basedir}/bin</outputDirectory>
</artifactItem>
</artifactItems>
<outputDirectory>${project.basedir}/bin</outputDirectory>
<includeScope>compile</includeScope>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
Empty file modified src/test/resources/DownSampledImage.jpg
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/test/resources/DownSampledImageWidth.jpg
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1268a34

Please sign in to comment.