Giter VIP home page Giter VIP logo

gradle-learn's People

Contributors

kinggggg avatar

Watchers

 avatar  avatar

gradle-learn's Issues

uild时,如果不加入apply from配置,会报告jstl找不到的错误

/*

//应用java插件
apply plugin: 'java'
//应用war插件。war插件扩展自java插件。如果同时引用了java插件和war插件,也不会报错
apply plugin: 'war'
apply from: 'https://raw.github.com/akhikhl/gretty/master/pluginScripts/gretty.plugin'

//指明生成jar文件的版本号。会显示在生成的jar文件的文件名称中
version = 0.1

//设置java版本编译兼容1.8
sourceCompatibility = 1.8

//在生成的jar文件的MANIFEST.MF文件中指明主程序的入口
//jar {
// manifest {
// attributes 'Main-Class': 'com.zeek.todo.AppMain'
// }
//}

//增加仓库依赖
repositories {
mavenCentral()
}

//增加依赖
dependencies {
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
runtime group: 'javax.servlet.jsp.jstl', name: 'jstl', version: '1.2'
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.