Skip to content

Commit 5442de1

Browse files
committed
Added name and description to pom files.
Renamed test.
1 parent 60cc9f3 commit 5442de1

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

jpa/native-sql-resultset-mapping/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@
1111

1212
<artifactId>native-sql-resultset-mapping</artifactId>
1313
<packaging>war</packaging>
14+
<name>JPA Native SQL ResultSet Mapping</name>
15+
<description>Using the EntityManager API to perform native SQL queries and map the result with @SqlResultSetMapping
16+
annotation
17+
</description>
1418
</project>

jpa/native-sql-resultset-mapping/src/test/java/org/javaee7/jpa/nativesql/resultset/mapping/JpaNativeSqlResultSetMapping.java renamed to jpa/native-sql-resultset-mapping/src/test/java/org/javaee7/jpa/nativesql/resultset/mapping/JpaNativeSqlResultSetMappingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* @author Roberto Cortez
2828
*/
2929
@RunWith(Arquillian.class)
30-
public class JpaNativeSqlResultSetMapping {
30+
public class JpaNativeSqlResultSetMappingTest {
3131
@Inject
3232
private EmployeeBean employeeBean;
3333

jpa/native-sql/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@
1111

1212
<artifactId>native-sql</artifactId>
1313
<packaging>war</packaging>
14+
<name>JPA Native SQL</name>
15+
<description>Using the EntityManager API to perform native SQL queries</description>
1416
</project>

0 commit comments

Comments
 (0)