Home | History | Annotate | Download | only in databinding

Lines Matching refs:notice

31                     notices  : ["https://raw.githubusercontent.com/JetBrains/kotlin/master/license/NOTICE.txt"]
56 notices : ["https://raw.githubusercontent.com/junit-team/junit/master/NOTICE.txt"]
61 notices : ["http://svn.apache.org/viewvc/commons/proper/io/trunk/NOTICE.txt?view=co"]
66 notices: ["http://svn.apache.org/viewvc/commons/proper/codec/trunk/NOTICE.txt?view=co"]
71 notices : ["https://git-wip-us.apache.org/repos/asf?p=commons-lang.git;a=blob_plain;f=NOTICE.txt;hb=refs/heads/master"]
88 notices: ["https://git-wip-us.apache.org/repos/asf?p=logging-log4j2.git;a=blob_plain;f=NOTICE.txt;hb=HEAD"]
135 def notice = buildNotice(usedLicenses)
136 def noticeFile = new File("${project.projectDir}/src/main/resources",'NOTICE.txt')
138 println ("writing notice file to: ${noticeFile.getAbsolutePath()}")
139 noticeFile << notice
168 StringBuilder notice = new StringBuilder();
169 notice.append("List of 3rd party licenses:")
171 notice.append("\n-----------------------------------------------------------------------------")
172 notice.append("\n* ${it.key}")
173 notice.append("\n")
177 notice.append("\n ****** NOTICE:\n${urlToText(it)}")
181 notice.append("\n ****** LICENSE:\n${urlToText(it)}")
184 notice.append("\n ****** LICENSE:\n${it}")
186 notice.append("\n\n\n")
188 return notice.toString()