Skip to content

Commit

Permalink
hibernate#63 start module hibernate-search-integrationtest-javase
Browse files Browse the repository at this point in the history
  • Loading branch information
mincong-h committed Jun 26, 2016
1 parent 931ca09 commit 6ddbb7c
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Expand Up @@ -14,8 +14,8 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/target/
/build/
target
build

########### Lucene ##########
org.hibernate.search.jsr352.test.entity.*/*
Expand Down
24 changes: 24 additions & 0 deletions integrationtest/javase/pom.xml
@@ -0,0 +1,24 @@
<?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>
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hs-jsr352</artifactId>
<version>5.6.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>hibernate-search-integrationtest-javase</artifactId>

<name>Hibernate Search - Integration Tests in Java SE</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.testSource>1.7</maven.compiler.testSource>
<maven.compiler.testTarget>1.7</maven.compiler.testTarget>
</properties>
<build>
<finalName>hibernate-search-integrationtest-javase</finalName>
</build>
</project>
7 changes: 5 additions & 2 deletions pom.xml
@@ -1,9 +1,9 @@
<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>io.github.mincongh</groupId>
<groupId>org.hibernate</groupId>
<artifactId>hs-jsr352</artifactId>
<version>5.6.0-SNAPSHOT</version>
<packaging>war</packaging>
<packaging>pom</packaging>
<name>Hibernate Search - JSR352</name>
<description>New implementation mass-indexer using JSR 352</description>

Expand Down Expand Up @@ -292,4 +292,7 @@
</plugin>
</plugins>
</build>
<modules>
<module>integrationtest/javase</module>
</modules>
</project>

0 comments on commit 6ddbb7c

Please sign in to comment.