Skip to content

Commit d4b2f51

Browse files
Merge pull request #454 from oracle/release_2022-10-26
Releasing version 3.0.0-beta1
2 parents 5b15d8b + f43762d commit d4b2f51

File tree

23,817 files changed

+1397003
-2205957
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

23,817 files changed

+1397003
-2205957
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

6+
## 3.0.0-beta1 - 2022-10-25
7+
### Added
8+
- Support for the Disaster Recovery service
9+
- Support for running code interactively with session applications using statements in the Data Flow service
10+
- Support for language custom models and language translation in the AI Language service
11+
12+
### Breaking Changes
13+
- Class `com.oracle.bmc.ailanguage.model.EntityDocument` has been removed in the AI Language service
14+
- Class `com.oracle.bmc.ailanguage.model.KeyPhraseDocument` has been removed in the AI Language service
15+
- Class `com.oracle.bmc.ailanguage.model.SentimentsDocument` has been removed in the AI Language service
16+
- Class `com.oracle.bmc.ailanguage.model.TextClassificationDocument` has been removed in the AI Language service
17+
618
## 2.46.0 - 2022-10-04
719
### Added
820
- Support for calling Oracle Cloud Infrastructure services in the eu-dcc-milan-1 region
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<parent>
5+
<groupId>com.oracle.oci.sdk</groupId>
6+
<artifactId>oci-java-sdk-addons</artifactId>
7+
<version>3.0.0-beta1</version>
8+
<relativePath>../pom.xml</relativePath>
9+
</parent>
10+
11+
<artifactId>oci-java-sdk-addons-apache-configurator-jersey</artifactId>
12+
<name>Oracle Cloud Infrastructure SDK - ApacheConfigurator Addon for Jersey 2</name>
13+
<description>This project adds support for the ApacheConfigurator with Jersey 2 for the Java SDK</description>
14+
<url>https://docs.cloud.oracle.com/Content/API/SDKDocs/javasdk.htm</url>
15+
16+
<dependencyManagement>
17+
<dependencies>
18+
<dependency>
19+
<groupId>com.oracle.oci.sdk</groupId>
20+
<artifactId>oci-java-sdk-bom</artifactId>
21+
<version>3.0.0-beta1</version>
22+
<type>pom</type>
23+
<scope>import</scope>
24+
</dependency>
25+
<dependency>
26+
<groupId>com.oracle.oci.sdk</groupId>
27+
<artifactId>oci-java-sdk-common-httpclient-jersey</artifactId>
28+
<version>3.0.0-beta1</version>
29+
<type>pom</type>
30+
<scope>import</scope>
31+
</dependency>
32+
</dependencies>
33+
</dependencyManagement>
34+
<dependencies>
35+
<dependency>
36+
<groupId>com.oracle.oci.sdk</groupId>
37+
<artifactId>oci-java-sdk-common</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.oracle.oci.sdk</groupId>
41+
<artifactId>oci-java-sdk-common-httpclient</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>com.oracle.oci.sdk</groupId>
45+
<artifactId>oci-java-sdk-common-httpclient-jersey</artifactId>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.apache.httpcomponents</groupId>
49+
<artifactId>httpcore</artifactId>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.apache.httpcomponents</groupId>
53+
<artifactId>httpclient</artifactId>
54+
</dependency>
55+
<dependency>
56+
<groupId>org.glassfish.jersey.core</groupId>
57+
<artifactId>jersey-common</artifactId>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.glassfish.jersey.connectors</groupId>
61+
<artifactId>jersey-apache-connector</artifactId>
62+
</dependency>
63+
<dependency>
64+
<groupId>org.slf4j</groupId>
65+
<artifactId>slf4j-api</artifactId>
66+
</dependency>
67+
<dependency>
68+
<groupId>com.google.code.findbugs</groupId>
69+
<artifactId>jsr305</artifactId>
70+
</dependency>
71+
</dependencies>
72+
</project>
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!--
2+
3+
Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
4+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
5+
6+
-->
7+
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
8+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
10+
11+
<id>release</id>
12+
<includeBaseDirectory>false</includeBaseDirectory>
13+
<formats>
14+
<format>zip</format>
15+
</formats>
16+
<fileSets>
17+
<!-- Include all of the Javadocs -->
18+
<fileSet>
19+
<directory>${project.build.directory}/apidocs</directory>
20+
<outputDirectory>apidocs</outputDirectory>
21+
</fileSet>
22+
<!-- Include the sources and javadoc jars for developers -->
23+
<fileSet>
24+
<directory>${project.build.directory}</directory>
25+
<includes>
26+
<include>${project.artifactId}-${project.version}-*.jar</include>
27+
</includes>
28+
<excludes>
29+
<exclude>${project.artifactId}-${project.version}-signed.jar</exclude>
30+
</excludes>
31+
<outputDirectory>lib</outputDirectory>
32+
</fileSet>
33+
</fileSets>
34+
<files>
35+
<!-- Explicitly copy the signed/unsigned jar and rename it in the release zip file.
36+
If this is for a "signed" release, then the signed jar should be defined; else, the unsigned if the
37+
build profile is "ziponly" -->
38+
<file>
39+
<source>${source.jar.for.zip}</source>
40+
<outputDirectory>lib</outputDirectory>
41+
<destName>${project.artifactId}-${project.version}.jar</destName>
42+
</file>
43+
</files>
44+
</assembly>

0 commit comments

Comments
 (0)