Skip to content

Commit 52b250b

Browse files
authored
GroupId and package name update (#403)
1 parent 6d81e85 commit 52b250b

File tree

209 files changed

+1002
-1009
lines changed

Some content is hidden

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

209 files changed

+1002
-1009
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>org.symphonyoss.symphony</groupId>
8-
<artifactId>messageml</artifactId>
9-
<version>0.14.0</version>
7+
<groupId>org.finos.symphony.messageml</groupId>
8+
<artifactId>messageml-utils</artifactId>
9+
<version>1.0.0</version>
1010
<name>MessageML Utils</name>
1111
<url>https://github.com/finos/messageml-utils</url>
1212
<description>A set of utilities for parsing, processing and rendering of MessageML messages

src/main/java/org/symphonyoss/symphony/entityjson/EntityJson.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/EntityJson.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
import com.fasterxml.jackson.databind.JsonNode;
2727
import com.fasterxml.jackson.databind.node.ObjectNode;

src/main/java/org/symphonyoss/symphony/entityjson/EntityJsonContext.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/EntityJsonContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
import com.fasterxml.jackson.databind.node.ObjectNode;
2727

src/main/java/org/symphonyoss/symphony/entityjson/EntityJsonException.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/EntityJsonException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
import javax.annotation.Nullable;
2727

src/main/java/org/symphonyoss/symphony/entityjson/EntityJsonParser.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/EntityJsonParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
import com.fasterxml.jackson.databind.ObjectMapper;
2727
import com.fasterxml.jackson.databind.node.ObjectNode;

src/main/java/org/symphonyoss/symphony/entityjson/EntityJsonParserBuilder.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/EntityJsonParserBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
/**
2727
* Builder for EntityJsonParser.

src/main/java/org/symphonyoss/symphony/entityjson/EntityJsonURIDownloader.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/EntityJsonURIDownloader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
import com.github.fge.jsonschema.core.load.download.URIDownloader;
2727

@@ -70,4 +70,4 @@ public InputStream fetch(final URI source) throws IOException
7070

7171
throw new IOException("URI is from unrecognized host - aborted.");
7272
}
73-
}
73+
}

src/main/java/org/symphonyoss/symphony/entityjson/IEntityJsonContext.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/IEntityJsonContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
import com.fasterxml.jackson.databind.node.ObjectNode;
2727

src/main/java/org/symphonyoss/symphony/entityjson/IEntityJsonInstanceContext.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/IEntityJsonInstanceContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
import com.fasterxml.jackson.databind.node.ObjectNode;
2727

src/main/java/org/symphonyoss/symphony/entityjson/IEntityJsonSchemaContext.java renamed to src/main/java/org/finos/symphony/messageml/entityjson/IEntityJsonSchemaContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* under the License.
2222
*/
2323

24-
package org.symphonyoss.symphony.entityjson;
24+
package org.finos.symphony.messageml.entityjson;
2525

2626
import com.fasterxml.jackson.databind.node.ObjectNode;
2727

0 commit comments

Comments
 (0)