bjkonglu opened a new pull request #7068: [FLINK-10836] Add repositories and 
pluginRepositories in root pom.xml
URL: https://github.com/apache/flink/pull/7068
 
 
   ## Background
   When developer want to build flink project use maven, they may encounter 
dependency problem which maven can't download dependencies from remote repo.
   
   ## Analyse
   There maybe a way to resolve this problem. That's add remote maven repo in 
root pom.xml, for example:
   
   ```scala
   <!-- common repositories -->
   <repositories>
      <repository>
         <id>alimaven</id>
         <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      </repository>
      <repository>
         <id>central</id>
         <name>Maven Repository</name>
         <url>https://repo.maven.apache.org/maven2</url>
         <releases>
            <enabled>true</enabled>
         </releases>
         <snapshots>
            <enabled>false</enabled>
         </snapshots>
      </repository>
   </repositories>
   
   <!-- common pluginRepositories -->
   <pluginRepositories>
      <pluginRepository>
         <id>alimaven</id>
         <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
         <releases>
            <enabled>true</enabled>
         </releases>
         <snapshots>
            <enabled>true</enabled>
         </snapshots>
      </pluginRepository>
      <pluginRepository>
         <id>central</id>
         <url>https://repo.maven.apache.org/maven2</url>
         <releases>
            <enabled>true</enabled>
         </releases>
         <snapshots>
            <enabled>false</enabled>
         </snapshots>
      </pluginRepository>
   </pluginRepositories>
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to