forked from 5gi/DeepJ
		
	a
This commit is contained in:
		
							parent
							
								
									04bfc0fe22
								
							
						
					
					
						commit
						31268450e7
					
				@ -16,5 +16,10 @@
 | 
				
			|||||||
      <option name="name" value="MavenRepo" />
 | 
					      <option name="name" value="MavenRepo" />
 | 
				
			||||||
      <option name="url" value="https://repo.maven.apache.org/maven2/" />
 | 
					      <option name="url" value="https://repo.maven.apache.org/maven2/" />
 | 
				
			||||||
    </remote-repository>
 | 
					    </remote-repository>
 | 
				
			||||||
 | 
					    <remote-repository>
 | 
				
			||||||
 | 
					      <option name="id" value="maven" />
 | 
				
			||||||
 | 
					      <option name="name" value="maven" />
 | 
				
			||||||
 | 
					      <option name="url" value="https://jitpack.io" />
 | 
				
			||||||
 | 
					    </remote-repository>
 | 
				
			||||||
  </component>
 | 
					  </component>
 | 
				
			||||||
</project>
 | 
					</project>
 | 
				
			||||||
							
								
								
									
										13
									
								
								build.gradle
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								build.gradle
									
									
									
									
									
								
							@ -11,10 +11,12 @@ sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
repositories {
 | 
					repositories {
 | 
				
			||||||
    mavenCentral()
 | 
					    mavenCentral()
 | 
				
			||||||
 | 
					    maven { url "https://jitpack.io" }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
dependencies {
 | 
					dependencies {
 | 
				
			||||||
    implementation group: 'org.json', name: 'json', version: '20210307'
 | 
					    implementation group: 'org.json', name: 'json', version: '20210307'
 | 
				
			||||||
 | 
					    implementation 'com.github.jitpack:gradle-simple:master-SNAPSHOT'
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
publishing {
 | 
					publishing {
 | 
				
			||||||
@ -27,12 +29,15 @@ publishing {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
    repositories {
 | 
					    repositories {
 | 
				
			||||||
        maven {
 | 
					        maven {
 | 
				
			||||||
            name 'nexus'
 | 
					            name 'gitea'
 | 
				
			||||||
            url "https://repo.nevets.tech/repository/maven-releases/"
 | 
					            url "https://git.nevets.tech/api/packages/5gi/maven"
 | 
				
			||||||
            credentials {
 | 
					            credentials {
 | 
				
			||||||
                username System.getenv('nexusUser')
 | 
					                username System.getenv('5giUserGit')
 | 
				
			||||||
                password System.getenv('nexusPass')
 | 
					                password System.getenv('5giPassGit')
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					configurations.all {
 | 
				
			||||||
 | 
					    resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user