Skip to content

Commit

Permalink
Upgrade to Legend 5.3.0 (#2749)
Browse files Browse the repository at this point in the history
  • Loading branch information
pierredebelen authored Apr 4, 2024
1 parent 4e21375 commit ab2cee6
Show file tree
Hide file tree
Showing 17 changed files with 78 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,45 @@
<artifactId>legend-engine-repl-client</artifactId>
<name>Legend Engine - REPL - Client</name>

<dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>module-info.class</exclude>
<exclude>META-INF/**/module-info.class</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.finos.legend.engine.repl.client.Client</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.finos.legend.pure</groupId>
<artifactId>legend-pure-m3-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
<module>legend-engine-language-pure-modelManager-sdlc-http-api</module>
<module>legend-engine-protocol</module>
<module>legend-engine-protocol-http-api</module>
<module>legend-engine-protocol-generation</module>
<module>legend-engine-protocol-generation-pure</module>
<module>legend-engine-protocol-pure</module>
</modules>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ public static MutableList<LegendExtension> get()
.withAll(loadExtensions("org.finos.legend.engine.language.pure.grammar.to.extension.PureGrammarComposerExtension"))
.withAll(loadExtensions("org.finos.legend.engine.language.pure.compiler.toPureGraph.extension.CompilerExtension"))

.withAll(loadExtensions("org.finos.legend.engine.language.pure.grammar.from.IRelationalGrammarParserExtension"))
.withAll(loadExtensions("org.finos.legend.engine.language.pure.grammar.to.IRelationalGrammarComposerExtension"))

// ExternalFormat Extension
.withAll(loadExtensions("org.finos.legend.engine.external.shared.format.model.ExternalFormatExtension"))
.withAll(loadExtensions("org.finos.legend.engine.external.shared.runtime.ExternalFormatRuntimeExtension"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<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">
<parent>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-core-language-pure</artifactId>
<artifactId>legend-engine-xts-protocol-java-generation</artifactId>
<version>4.42.4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<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">
<parent>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-core-language-pure</artifactId>
<artifactId>legend-engine-xts-protocol-java-generation</artifactId>
<version>4.42.4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
33 changes: 33 additions & 0 deletions legend-engine-xts-protocol-java-generation/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2022 Goldman Sachs
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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">
<parent>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine</artifactId>
<version>4.42.4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>legend-engine-xts-protocol-java-generation</artifactId>
<packaging>pom</packaging>
<name>Legend Engine - XTS - Protocol - Java - Generation</name>

<modules>
<module>legend-engine-protocol-generation</module>
<module>legend-engine-protocol-generation-pure</module>
</modules>
</project>
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@

<!-- Misc -->
<module>legend-engine-xts-authentication</module>
<module>legend-engine-xts-protocol-java-generation</module>
<module>legend-engine-config</module>

<!-- Analytics -->
Expand All @@ -104,7 +105,7 @@

<properties>
<!-- Legend -->
<legend.pure.version>5.2.2</legend.pure.version>
<legend.pure.version>5.3.0</legend.pure.version>
<legend.shared.version>0.25.4</legend.shared.version>

<!-- SONAR -->
Expand Down

0 comments on commit ab2cee6

Please sign in to comment.