gradle

企业信息门户webtap产品发布了

无人久伴 提交于 2020-11-30 23:46:01
作品背景 随着企业应用的软件越来越多,并且信息软件基本以B/S为主了,很多时候各种软件的地址,让大家记的头昏脑胀,并且一堆密码要记,而且大部分系统之间无法互通,虽然市面上有各种集成方案,但无法做到简单有效,都是大型软件厂商的PPT解决方案加一堆开发工作和大量的成本支出,最重要的是大部分都是体验极差、毫无美感的东西。 解決方案 基于上述背景,个人利用业余时间在持续完善做一款小作品,或多或少的解决一点问题,虽然目前还没成熟,但是考虑再三,先开源出来,希望有志同道合的人一起完善。 作品说明 1.首页 首页主要功能有 app显示 文件夹分类 应用搜索 登录 登录后快捷新增应用 背景自动每天同步bing搜索引擎的的壁纸 应用和新闻站点链接(未完成) 通过点击应用上的锁 icon即可查看应用的账号和密码,在没有单点登录的功能情况下这个功能非常有用 2.系统登录 点击首页右上角的 sigin 到登录页面 3.应用列表 后台管理 主功能只有新建应用、应用列表、系统设置,极其简约,好不好看只是个人风格,默认登录进来及显示应用列表。 4、新增应用 添加应用除了常规功能还增加了敏感信息输入,敏感信息只能登录后才能查看; 查看密码功能考虑到很多时候连接地址需要密码才能访问; 查看权限目前只实现了登录可见以及自己可见(权限功能还需要继续完善); 5、系统设置 系统设置里可以进行基本信息维护,个人登录信息维护

gradle plugin 问题记录

我是研究僧i 提交于 2020-11-30 20:47:28
project. extensions .create( 'imgR' , TestExtension) imgR { // 在 Transform // void transform(TransformInvocation transformInvocation)才生效 jarWhiteList = [ ':imgR' , 'aaaa' ] name = "lingqg" } 来源: oschina 链接: https://my.oschina.net/u/3336230/blog/4764192

build.gradle: compile group vs compile, buildscript, classpath

微笑、不失礼 提交于 2020-11-30 08:00:32
问题 What is the difference between "compile group" and "compile"? Just another way to define a dependency? Ex: compile group: 'org.slf4j', name: 'slf4j-jcl', version: '1.7.21' And i think this also will work: compile("org.slf4j:slf4j-jcl:1.7.21") Why do i have the declare mavenCentral() again and another dependencies block inside the buildscript block? buildscript { repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE") } }

build.gradle: compile group vs compile, buildscript, classpath

不羁岁月 提交于 2020-11-30 07:53:51
问题 What is the difference between "compile group" and "compile"? Just another way to define a dependency? Ex: compile group: 'org.slf4j', name: 'slf4j-jcl', version: '1.7.21' And i think this also will work: compile("org.slf4j:slf4j-jcl:1.7.21") Why do i have the declare mavenCentral() again and another dependencies block inside the buildscript block? buildscript { repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE") } }

build.gradle: compile group vs compile, buildscript, classpath

大兔子大兔子 提交于 2020-11-30 07:52:31
问题 What is the difference between "compile group" and "compile"? Just another way to define a dependency? Ex: compile group: 'org.slf4j', name: 'slf4j-jcl', version: '1.7.21' And i think this also will work: compile("org.slf4j:slf4j-jcl:1.7.21") Why do i have the declare mavenCentral() again and another dependencies block inside the buildscript block? buildscript { repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE") } }

flutter AS 打包

試著忘記壹切 提交于 2020-11-30 07:29:24
1,进入你的flutte SDK文件夹,命令行工具运行flutter doctor -v, 得到keytool.exe所在的目录:如: D:\Program Files\Android\Android Studio\jre\bin\ java 2,进入你的AS teminal,然后 进入第一步找到的路径, cd D:\Program Files\Android\Android Studio\jre\bin\ 你可以看到路径最后的java省略掉了,要特别留心,必须省略! 3:运行指令: keytool -genkey -v -keystore D:\key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias key (务必注意运行命令的路径地址是之前咱们进入的java目录) 4:按照要求输入密码等等信息,当然除了密码之外的信息可以留白,然后就可以在D盘找到key.jsk文件; 5:有了这个key.jks文件后,可以到项目目录下的 android 文件夹下,创建一个名为key.properties的文件,并打开粘贴下面的代码。 当然了,密码你自己随便设置; 6:在gradle中配置签名 通过编辑 <app dir>/android/app/build.gradle 文件为您的应用配置签名 替换: android { 为: def

Could not get unknown property 'PrivateData' for object of type org.gradle.api.internal.initialization.DefaultScriptHandler

自闭症网瘾萝莉.ら 提交于 2020-11-29 21:05:44
问题 There is an open source project here. After trying multiple times to build it, there is an error that make build Failed : Task failed with an exception. Where: Build file '/src/apps/build.gradle' line: 19 What went wrong: A problem occurred evaluating root project 'apps'. Could not get unknown property 'PrivateData' for object of type org.gradle.api.internal.initialization.DefaultScriptHandler. Here is line 19 : buildscript { PrivateData.merge(project, "all-apps") ... } And the defined

PMD Gradle Plugin: Remove pmdTest upon gradle check

為{幸葍}努か 提交于 2020-11-28 08:03:59
问题 I am using the PMD Gradle plugin in a build.gradle file. Is there a way to disable the pmdTest task so that it is not run I execute gradle check ? Edit: In the question I say 'remove'. I really mean 'disable'. 回答1: pmd { sourceSets = [sourceSets.main] } See PmdExtension in the Gradle Build Language Reference. 来源: https://stackoverflow.com/questions/17237115/pmd-gradle-plugin-remove-pmdtest-upon-gradle-check

PMD Gradle Plugin: Remove pmdTest upon gradle check

断了今生、忘了曾经 提交于 2020-11-28 08:00:29
问题 I am using the PMD Gradle plugin in a build.gradle file. Is there a way to disable the pmdTest task so that it is not run I execute gradle check ? Edit: In the question I say 'remove'. I really mean 'disable'. 回答1: pmd { sourceSets = [sourceSets.main] } See PmdExtension in the Gradle Build Language Reference. 来源: https://stackoverflow.com/questions/17237115/pmd-gradle-plugin-remove-pmdtest-upon-gradle-check

PMD Gradle Plugin: Remove pmdTest upon gradle check

梦想与她 提交于 2020-11-28 07:59:06
问题 I am using the PMD Gradle plugin in a build.gradle file. Is there a way to disable the pmdTest task so that it is not run I execute gradle check ? Edit: In the question I say 'remove'. I really mean 'disable'. 回答1: pmd { sourceSets = [sourceSets.main] } See PmdExtension in the Gradle Build Language Reference. 来源: https://stackoverflow.com/questions/17237115/pmd-gradle-plugin-remove-pmdtest-upon-gradle-check