Skip to content

Commit 5b052a4

Browse files
author
Phrase
committed
Deploying from phrase/openapi@1c964230
1 parent 948cbbd commit 5b052a4

File tree

196 files changed

+205
-205
lines changed

Some content is hidden

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

196 files changed

+205
-205
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# phraseJava
1+
# phrase-java
22

33
Phrase API Reference
44
- API version: 2.0.0
5-
- Build date: 2021-07-21T07:06:01.182370Z[Etc/UTC]
5+
- Build date: 2021-07-21T07:36:59.741837Z[Etc/UTC]
66

77
Phrase is a translation management platform for software projects. You can collaborate on language file translation with your team or order translations through our platform. The API allows you to import locale files, download locale files, tag keys or interact in other ways with the localization data stored in Phrase for your account.
88

@@ -1551,8 +1551,8 @@ Add this dependency to your project's POM:
15511551
```xml
15521552
<dependency>
15531553
<groupId>com.phrase</groupId>
1554-
<artifactId>phraseJava</artifactId>
1555-
<version>1.1.0</version>
1554+
<artifactId>phrase-java</artifactId>
1555+
<version>1.1.2</version>
15561556
<scope>compile</scope>
15571557
</dependency>
15581558
```
@@ -1562,7 +1562,7 @@ Add this dependency to your project's POM:
15621562
Add this dependency to your project's build file:
15631563

15641564
```groovy
1565-
compile "com.phrase:phraseJava:1.1.0"
1565+
compile "com.phrase:phrase-java:1.1.2"
15661566
```
15671567

15681568
### Others
@@ -1575,7 +1575,7 @@ mvn clean package
15751575

15761576
Then manually install the following JARs:
15771577

1578-
* `target/phraseJava-1.1.0.jar`
1578+
* `target/phrase-java-1.1.2.jar`
15791579
* `target/lib/*.jar`
15801580

15811581
## Getting Started

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'java-library'
66
apply plugin: 'maven-publish'
77

88
group = 'com.phrase'
9-
version = '1.1.0'
9+
version = '1.1.2'
1010

1111
buildscript {
1212
repositories {
@@ -90,7 +90,7 @@ if(hasProperty('target') && target == 'android') {
9090

9191
// install {
9292
// repositories.mavenInstaller {
93-
// pom.artifactId = 'phraseJava'
93+
// pom.artifactId = 'phrase-java'
9494
// }
9595
// }
9696

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
lazy val root = (project in file(".")).
22
settings(
33
organization := "com.phrase",
4-
name := "phraseJava",
5-
version := "1.1.0",
4+
name := "phrase-java",
5+
version := "1.1.2",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.phrase</groupId>
5-
<artifactId>phraseJava</artifactId>
5+
<artifactId>phrase-java</artifactId>
66
<packaging>jar</packaging>
7-
<name>phraseJava</name>
8-
<version>1.1.0</version>
7+
<name>phrase-java</name>
8+
<version>1.1.2</version>
99
<url>https://developers.phrase.com</url>
1010
<description>OpenAPI Java</description>
1111
<scm>

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = "phraseJava"
1+
rootProject.name = "phrase-java"

src/main/java/com/phrase/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private void init() {
109109
json = new JSON();
110110

111111
// Set default User-Agent.
112-
setUserAgent("OpenAPI-Generator/1.1.0/java");
112+
setUserAgent("OpenAPI-Generator/1.1.2/java");
113113

114114
authentications = new HashMap<String, Authentication>();
115115
}

src/main/java/com/phrase/client/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.Map;
1616
import java.util.List;
1717

18-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-07-21T07:06:01.182370Z[Etc/UTC]")
18+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-07-21T07:36:59.741837Z[Etc/UTC]")
1919
public class ApiException extends Exception {
2020
private int code = 0;
2121
private Map<String, List<String>> responseHeaders = null;

src/main/java/com/phrase/client/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-07-21T07:06:01.182370Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-07-21T07:36:59.741837Z[Etc/UTC]")
1616
public class Configuration {
1717
private static ApiClient defaultApiClient = new ApiClient();
1818

src/main/java/com/phrase/client/Pair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-07-21T07:06:01.182370Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-07-21T07:36:59.741837Z[Etc/UTC]")
1616
public class Pair {
1717
private String name = "";
1818
private String value = "";

src/main/java/com/phrase/client/StringUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-07-21T07:06:01.182370Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-07-21T07:36:59.741837Z[Etc/UTC]")
1616
public class StringUtil {
1717
/**
1818
* Check if the given array contains the given value (with case-insensitive comparison).

0 commit comments

Comments
 (0)