Skip to content

Commit

Permalink
Issue #SC-2263 refactor: neo4j-kernel-extension for transaction event…
Browse files Browse the repository at this point in the history
… generation.
  • Loading branch information
maheshkumargangula committed Mar 31, 2021
1 parent a64a571 commit 4588aa5
Show file tree
Hide file tree
Showing 26 changed files with 2,108 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

.DS_Store
5 changes: 5 additions & 0 deletions neo4j-extensions/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/target/
.DS_Store
/.idea/
*.iml
*.log
1 change: 1 addition & 0 deletions neo4j-extensions/custom-procedures/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
62 changes: 62 additions & 0 deletions neo4j-extensions/custom-procedures/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.sunbird</groupId>
<artifactId>custom-procedures</artifactId>
<version>1.1</version>

<properties>
<neo4j.version>3.0.4</neo4j.version>
</properties>

<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<version>${neo4j.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>org.neo4j:*</exclude>
<exclude>org.apache.lucene:*</exclude>
<exclude>org.scala-lang:*</exclude>
<exclude>org.ow2.asm:*</exclude>
<exclude>org.parboiled:*</exclude>
<exclude>net.sf.opencsv:*</exclude>
<exclude>com.googlecode.concurrentlinkedhashmap:*</exclude>
<exclude>io.netty:*</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 4588aa5

Please sign in to comment.