I was kind of shocked when I was running the build and a lot of "standard"
jars were being downloaded from raw.github.com rather than from maven
"central." In the pom.xml file, we have:
<repositories>
<!-- For dependency recosiled version of hive_test -->
<repository>
<id>nflabs public repository</id>
<url>https://raw.github.com/NFLabs/mvn-repo/master/releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- for for jdo/jdo2-api/2.3-ec -->
<repository>
<id>cdh-repository</id>
<name>CDH Repository</name>
<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
Is the plan to keep things that way? I'm really not keen on having stuff
downloaded from alternate locations when I build my software. I know the
central repo used to frown upon non-standard repos. I'm not sure if it
still does or not.