Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Commit

Permalink
Fixing group names.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzonthemtn committed Mar 21, 2024
1 parent dc448fd commit b72ad17
Show file tree
Hide file tree
Showing 44 changed files with 663 additions and 758 deletions.
6 changes: 3 additions & 3 deletions docs/Users-Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ Drools implementation:

```
import ai.philterd.entitydb.model.entity.Entity;
import com.mtnfog.entity.EntityExtractionAttributes;
import com.mtnfog.idyl.sdk.rulesengine.drools.model.EntitiesHolder;
import com.mtnfog.idyl.e3.rules.Ses;
import ai.philterd.entity.EntityExtractionAttributes;
import ai.philterd.idyl.sdk.rulesengine.drools.model.EntitiesHolder;
import ai.philterd.idyl.e3.rules.Ses;
// This is a sample rule that sends an email when an entity having the
// text "George Washington" is extracted. To use this rule, set your
Expand Down
2 changes: 1 addition & 1 deletion entitydb-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<name>entitydb-app</name>
<packaging>jar</packaging>
<properties>
<start.class>com.mtnfog.entitydb.EntityDbApplication</start.class>
<start.class>ai.philterd.entitydb.EntityDbApplication</start.class>
</properties>
<build>
<finalName>entitydb</finalName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public LocalContainerEntityManagerFactoryBean entityManagerFactory() {

LocalContainerEntityManagerFactoryBean entityManager = new LocalContainerEntityManagerFactoryBean();
entityManager.setDataSource(dataSource());
entityManager.setPackagesToScan(new String[] { "com.mtnfog.entitydb.model.datastore.entities" });
entityManager.setPackagesToScan(new String[] { "ai.philterd.entitydb.model.datastore.entities" });

entityManager.setJpaVendorAdapter(new HibernateJpaVendorAdapter());
entityManager.setJpaProperties(getProperties());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@

@Configuration
@EnableTransactionManagement
@ComponentScan(basePackages = "com.mtnfog.entitydb")
@EnableJpaRepositories("com.mtnfog.entitydb")
@ComponentScan(basePackages = "ai.philterd.entitydb")
@EnableJpaRepositories("ai.philterd.entitydb")
public class RepositoryTestConfig {

private static final Logger LOGGER = LogManager.getLogger(RepositoryTestConfig.class);
Expand All @@ -52,7 +52,7 @@ public LocalContainerEntityManagerFactoryBean entityManagerFactory() {

LocalContainerEntityManagerFactoryBean entityManager = new LocalContainerEntityManagerFactoryBean();
entityManager.setDataSource(dataSource());
entityManager.setPackagesToScan(new String[] { "com.mtnfog.entitydb.model.datastore.entities" });
entityManager.setPackagesToScan(new String[] { "ai.philterd.entitydb.model.datastore.entities" });

entityManager.setJpaVendorAdapter(new HibernateJpaVendorAdapter());
entityManager.setJpaProperties(getProperties());
Expand Down
6 changes: 3 additions & 3 deletions entitydb-entity-store/entitydb-entity-store-cassandra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mtnfog</groupId>
<artifactId>entity-model</artifactId>
<version>${entity.model.version}</version>
<groupId>ai.philterd.entitydb</groupId>
<artifactId>entitydb-model</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions entitydb-entity-store/entitydb-entity-store-dynamodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mtnfog</groupId>
<artifactId>entity-model</artifactId>
<version>${entity.model.version}</version>
<groupId>ai.philterd.entitydb</groupId>
<artifactId>entitydb-model</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
11 changes: 6 additions & 5 deletions entitydb-entity-store/entitydb-entity-store-mongodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
Expand All @@ -47,7 +47,8 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>com.github.fakemongo</groupId>
<artifactId>fongo</artifactId>
Expand All @@ -66,9 +67,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mtnfog</groupId>
<artifactId>entity-model</artifactId>
<version>${entity.model.version}</version>
<groupId>ai.philterd.entitydb</groupId>
<artifactId>entitydb-model</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions entitydb-entity-store/entitydb-entity-store-rdbms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mtnfog</groupId>
<artifactId>entity-model</artifactId>
<version>${entity.model.version}</version>
<groupId>ai.philterd.entitydb</groupId>
<artifactId>entitydb-model</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-->

<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.mtnfog.entitydb.entitystore.rdbms.model">
<hibernate-mapping package="ai.philterd.entitydb.entitystore.rdbms.model">
<class name="RdbmsStoredEntity" table="Entities">
<id name="id" type="string" column="id">
<generator class="assigned"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-->

<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.mtnfog.entitydb.entitystore.rdbms.model">
<hibernate-mapping package="ai.philterd.entitydb.entitystore.rdbms.model">
<class name="RdbmsStoredEntityMetadata" table="EntityMetadata">
<id name="id" type="int" column="id">
<generator class="native"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-->

<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.mtnfog.entitydb.entitystore.rdbms.model">
<hibernate-mapping package="ai.philterd.entitydb.entitystore.rdbms.model">
<class name="RdbmsStoredEntity" table="Entities">
<id name="id" type="string" column="id">
<generator class="assigned"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-->

<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.mtnfog.entitydb.entitystore.rdbms.model">
<hibernate-mapping package="ai.philterd.entitydb.entitystore.rdbms.model">
<class name="RdbmsStoredEntityMetadata" table="EntityMetadata">
<id name="id" type="int" column="id">
<generator class="native"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
/**
* Static functions for applying EQL statements to entities.
*
* @author Mountain Fog, Inc.
* @author Philterd, LLC
*
*/
public class EqlFilters {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2019 Mountain Fog, Inc.
* Copyright 2024 Philterd, LLC
*
* 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
Expand All @@ -13,21 +13,7 @@
* License for the specific language governing permissions and limitations under
* the License.
******************************************************************************/
/*
* (C) Copyright 2017 Mountain Fog, Inc.
*
* 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.
*/

package ai.philterd.entitydb.test.eql.filters;

import static org.junit.Assert.assertEquals;
Expand Down
2 changes: 1 addition & 1 deletion entitydb-eql/eql-filters/src/test/resources/log4j2.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2019 Mountain Fog, Inc.
Copyright 2024 Philterd, LLC
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* The purpose of EQL is to provide a generic interface that
* can be used to query across all entity stores.
*
* @author Mountain Fog, Inc.
* @author Philterd, LLC
*
*/
public class Eql {
Expand Down
Loading

0 comments on commit b72ad17

Please sign in to comment.