ไม่ยากเกินไป ฉันยังไม่ได้อ่านใบอนุญาต อย่างไรก็ตามฉันได้พิสูจน์ผลงานนี้แล้ว คุณสามารถคัดลอกไฟล์ jar sqljdbc4 ไปยังเน็ตเวิร์กแชร์หรือโลคัลไดเร็กทอรี build.gradle ของคุณควรมีลักษณะดังนี้:
apply plugin: 'java'
//apply plugin: 'maven'
//apply plugin: 'enhance'
sourceCompatibility = 1.8
version = '1.0'
//library versions
def hibernateVersion='4.3.10.Final'
def microsoftSQLServerJDBCLibVersion='4.0'
def springVersion='2.5.6'
def log4jVersion='1.2.16'
def jbossejbapiVersion='3.0.0.GA'
repositories {
mavenCentral()
maven{url "file://Sharedir/releases"}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile "org.hibernate:hibernate-core:$hibernateVersion"
compile "com.microsoft.sqlserver:sqljdbc4:$microsoftSQLServerJDBCLibVersion"
}
task showMeCache << {
configurations.compile.each { println it }
}
ภายใต้ไดเร็กทอรี sharedir / release ฉันมีไดเร็กทอรีที่คล้ายกับโครงสร้าง maven ซึ่งเป็น \ sharedir \ release \ com \ microsoft \ sqlserver \ sqljdbc4 \ 4.0 \ sqljdbc4-4.0.jar
โชคดี.
เดวิดเยน
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.4 :install-file (default-cli) on project standalone-pom: The specified file 'C:\Us ers\anthony\sqljdbc4.jar' not exists -> [Help 1]