Skip to content

Commit

Permalink
remove unsed generator apis (#2686)
Browse files Browse the repository at this point in the history
  • Loading branch information
MauricioUyaguari authored Mar 20, 2024
1 parent c69ed1e commit f5a2b6f
Show file tree
Hide file tree
Showing 20 changed files with 74 additions and 891 deletions.
30 changes: 30 additions & 0 deletions legend-engine-xts-avro/legend-engine-xt-avro-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@
</dependency>
<!-- ENGINE -->

<!-- JACKSON -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>

</dependency>
<!-- JACKSON -->

<!-- ANNOTATIONS -->
<dependency>
<groupId>io.swagger</groupId>
Expand Down Expand Up @@ -92,6 +100,28 @@
<artifactId>pac4j-core</artifactId>
</dependency>
<!-- PAC4J -->

<!-- TEST -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-language-pure-compiler</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
<version>${jersey.version}</version>
<scope>test</scope>
</dependency>

<!-- TEST -->

</dependencies>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package org.finos.legend.engine.external.format.avro.tests;
package org.finos.legend.engine.external.format.avro.schema.generations.api;

import com.fasterxml.jackson.databind.ObjectMapper;
import org.finos.legend.engine.external.format.avro.schema.generations.AvroGenerationInput;
import org.finos.legend.engine.external.format.avro.schema.generations.AvroGenerationService;
import org.finos.legend.engine.language.pure.modelManager.ModelManager;
import org.finos.legend.engine.shared.core.ObjectMapperFactory;
import org.finos.legend.engine.shared.core.deployment.DeploymentMode;
Expand Down
43 changes: 0 additions & 43 deletions legend-engine-xts-avro/legend-engine-xt-avro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-protocol-pure</artifactId>
</dependency>
<dependency>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-language-pure-modelManager</artifactId>
</dependency>
<dependency>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-language-pure-compiler</artifactId>
Expand All @@ -77,16 +73,6 @@
</dependency>
<!-- ENGINE -->

<!-- ANNOTATIONS -->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
</dependency>
<!-- ANNOTATIONS -->

<!-- JACKSON -->
<dependency>
Expand Down Expand Up @@ -114,35 +100,6 @@
</dependency>
<!-- ECLIPSE COLLECTIONS -->

<!-- OPEN TRACING -->
<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-util</artifactId>
</dependency>
<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-api</artifactId>
</dependency>
<!-- OPEN TRACING -->

<!-- LOG -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- LOG -->

<!-- PAC4J -->
<dependency>
<groupId>org.pac4j.jax-rs</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>org.pac4j</groupId>
<artifactId>pac4j-core</artifactId>
</dependency>
<!-- PAC4J -->

<!-- TEST -->
<dependency>
<groupId>junit</groupId>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
@Deprecated
public class DAMLGenerationService
{
private static final Logger LOGGER = org.slf4j.LoggerFactory.getLogger(org.finos.legend.engine.external.format.daml.generation.DAMLGenerationService.class);
private static final Logger LOGGER = org.slf4j.LoggerFactory.getLogger(org.finos.legend.engine.external.format.daml.generation.api.DAMLGenerationService.class);
private final ModelManager modelManager;

public DAMLGenerationService(ModelManager modelManager)
Expand Down
37 changes: 0 additions & 37 deletions legend-engine-xts-daml/legend-engine-xt-daml-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,39 +38,6 @@
</dependency>

<!-- ENGINE -->
<dependency>
<groupId>org.pac4j.jax-rs</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>org.pac4j</groupId>
<artifactId>pac4j-core</artifactId>
</dependency>

<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
</dependency>

<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-util</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
</dependency>

<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-api</artifactId>
</dependency>

<dependency>
<groupId>org.finos.legend.pure</groupId>
Expand All @@ -82,10 +49,6 @@
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-language-pure-compiler</artifactId>
</dependency>
<dependency>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-language-pure-modelManager</artifactId>
</dependency>
<dependency>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-shared-core</artifactId>
Expand Down

This file was deleted.

Loading

0 comments on commit f5a2b6f

Please sign in to comment.