Skip to content

Commit

Permalink
add core module
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Mar 18, 2018
1 parent 7e6db0a commit 2b791bf
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 1 deletion.
10 changes: 10 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<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>
<parent>
<groupId>org.bsc.processor</groupId>
<artifactId>java2ts-processor-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>java2ts-processor-core</artifactId>
<name>java2ts-processor::core - ${project.version}</name>
</project>
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
<!--
<module>sample</module>
-->
</modules>
<module>core</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
Expand Down
7 changes: 7 additions & 0 deletions processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,12 @@
<artifactId>javax.json</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>java2ts-processor-core</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>
</project>

0 comments on commit 2b791bf

Please sign in to comment.