thekrakken / java-grok

Simple API that allows you to easily parse logs and other files
http://grok.nflabs.com/
Other
358 stars 152 forks source link

package name is not compliant with JAVA naming conventions #56

Closed trixpan closed 7 years ago

trixpan commented 7 years ago

I noticed this today by accident:

You maven and gradle code suggest your name space is:

<dependency>
  <groupId>io.thekraken</groupId>
  <artifactId>grok</artifactId>
  <version>0.1.4</version>
</dependency>

Yet, your package names are:

oi.thekraken.grok.api

Note how your packages start with oi, while your groupId starts with io.

Traditionally your packages would start with 'io', same as Apache Spark is org.apache.spark instead of gro.apache.spark.