Skip to content

Commit 7ccb0b7

Browse files
authored
Merge pull request #97 from salesforce/bugfix/toppom
Reintroduce top-level pom
2 parents 8b9aa29 + aee1711 commit 7ccb0b7

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@ language: java
22
jdk:
33
- oraclejdk8
44

5-
script: ./buildall.sh
6-
75
after_success:
86
- bash <(curl -s https://codecov.io/bash)

buildall.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<!-- Checks for Headers -->
4444
<!-- See http://checkstyle.sf.net/config_header.html -->
4545
<module name="Header">
46-
<property name="headerFile" value="../checkstyle-header.txt"/>
46+
<property name="headerFile" value="checkstyle-header.txt"/>
4747
<property name="fileExtensions" value="java"/>
4848
</module>
4949

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>com.salesforce.servicelibs</groupId>
7+
<artifactId>grpc-contrib-top</artifactId>
8+
<packaging>pom</packaging>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<modules>
12+
<module>contrib</module>
13+
<module>jprotoc</module>
14+
<module>demos</module>
15+
</modules>
16+
17+
</project>

0 commit comments

Comments
 (0)