發表文章

目前顯示的是 2月 25, 2019的文章

MLH1

圖片
MLH1 Available structures PDB Ortholog search: PDBe RCSB List of PDB id codes 3RBN, 4P7A Identifiers Aliases MLH1 , mutL homolog 1, COCA2, FCC2, HNPCC, HNPCC2, hMLH1 External IDs OMIM: 120436 MGI: 101938 HomoloGene: 208 GeneCards: MLH1 Gene location (Mouse) Chr. Chromosome 9 (mouse) [1] Band 9 F3|9 60.92 cM Start 111,228,228 bp [1] End 111,271,791 bp [1] RNA expression pattern More reference expression data Gene ontology Molecular function • mismatched DNA binding • chromatin binding • single-stranded DNA binding • ATPase activity • protein binding • MutSalpha complex binding • ATP binding • guanine/thymine mispair binding • nucleotide binding • enzyme binding Cellular component • chiasma • membrane • male germ cell nucleus • nucleoplasm • chromosome • condensed nuclear chromosome • synaptonemal complex • MutLalpha complex • cell nucleus • condensed chromosome • late recombination nodule • mismatch repair complex Biological process • nuclear-transcribed mRNA poly

Correct way to specify and retrieve project version (Gradle)

圖片
0 I am using Gradle to build my application and I want to know the best way to specify and retrieve the application version. I've seen suggestions to put it in either gradle.properties : version=0.0.1-SNAPSHOT or build.gradle : allprojects group = 'com.my-app' version = '0.0.1-SNAPSHOT' Which of these two options is the best? How do I then retrieve the version at runtime? public static void main(String args) System.out.println(****retrieve version number here****); I've read around various posts but I'm not seeing a solution. Is there a standard way of doing this? java gradle properties share | improve this question asked Nov 14 '18 at 20:13 ksl ksl 1,777 2 35 64 add a comment  |  0 I am using Gradle to build my application and I want to know the best way to specify and retrieve the application version. I've seen suggestions to put it in either gradle.properties : version=0.0.1-