Skip to content

Commit

Permalink
Fixing group name in dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzonthemtn committed Mar 21, 2024
1 parent b72ad17 commit f18cc10
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 14 deletions.
Empty file.
6 changes: 0 additions & 6 deletions entitydb-entity-store/entitydb-entity-store-cassandra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@
</parent>
<artifactId>entitydb-entity-store-cassandra</artifactId>
<name>entitydb-entity-store-cassandra</name>
<licenses>
<license>
<name>${license.name}</name>
<url>${license.url}</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.apache.cassandra</groupId>
Expand Down
8 changes: 1 addition & 7 deletions entitydb-entity-store/entitydb-entity-store-dynamodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@
</parent>
<artifactId>entitydb-entity-store-dynamodb</artifactId>
<name>entitydb-entity-store-dynamodb</name>
<licenses>
<license>
<name>${license.name}</name>
<url>${license.url}</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -132,7 +126,7 @@
<version>${commons.lang.version}</version>
</dependency>
<dependency>
<groupId>cai.philterd.entitydb</groupId>
<groupId>ai.philterd.entitydb</groupId>
<artifactId>eql-language</artifactId>
<version>${project.version}</version>
</dependency>
Expand Down
69 changes: 69 additions & 0 deletions entitydb-eql/eql-pig-udf/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>eql</artifactId>
<groupId>ai.philterd.entitydb</groupId>
<version>0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>eql-pig-udf</artifactId>
<name>eql-pig-udf</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>eql-pig-udf</finalName>
<transformers>
<transformer />
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target</outputDirectory>
<resources>
<resource>
<directory>${basedir}/pig/</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>cai.philterd.entitydb</groupId>
<groupId>ai.philterd.entitydb</groupId>
<artifactId>eql-language</artifactId>
<version>${project.version}</version>
</dependency>
Expand Down

0 comments on commit f18cc10

Please sign in to comment.