1 Star 0 Fork 13

xiongweizhou / maven-framework-project

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nexus.xml 69.47 KB
一键复制 编辑 原始数据 按行查看 历史
v5tech 提交于 2014-07-03 00:22 . commit
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
<?xml version="1.0" encoding="UTF-8"?>
<nexusConfiguration>
<version>2.2.0</version>
<nexusVersion>2.5.1-01</nexusVersion>
<globalConnectionSettings>
<connectionTimeout>20000</connectionTimeout>
<retrievalRetryCount>3</retrievalRetryCount>
<queryString></queryString>
</globalConnectionSettings>
<restApi>
<uiTimeout>60000</uiTimeout>
</restApi>
<httpProxy>
<enabled>true</enabled>
<port>8082</port>
<proxyPolicy>strict</proxyPolicy>
</httpProxy>
<routing>
<resolveLinks>true</resolveLinks>
</routing>
<repositories>
<repository>
<id>central</id>
<name>Central</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repo1.maven.org/maven2/</url>
<mirrors>
<mirror>
<id>http://mirrors.ibiblio.org/pub/mirrors/maven2</id>
<url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
</mirror>
</mirrors>
</remoteStorage>
<externalConfiguration>
<proxyMode>ALLOW</proxyMode>
<artifactMaxAge>-1</artifactMaxAge>
<itemMaxAge>1440</itemMaxAge>
<cleanseRepositoryMetadata>false</cleanseRepositoryMetadata>
<downloadRemoteIndex>true</downloadRemoteIndex>
<checksumPolicy>WARN</checksumPolicy>
<repositoryPolicy>RELEASE</repositoryPolicy>
<autoBlockActive>true</autoBlockActive>
<fileTypeValidation>true</fileTypeValidation>
<metadataMaxAge>1440</metadataMaxAge>
</externalConfiguration>
</repository>
<repository>
<id>apache-snapshots</id>
<name>Apache Snapshots</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repository.apache.org/snapshots/</url>
</remoteStorage>
<externalConfiguration>
<proxyMode>ALLOW</proxyMode>
<artifactMaxAge>1440</artifactMaxAge>
<itemMaxAge>1440</itemMaxAge>
<cleanseRepositoryMetadata>false</cleanseRepositoryMetadata>
<downloadRemoteIndex>true</downloadRemoteIndex>
<checksumPolicy>WARN</checksumPolicy>
<repositoryPolicy>SNAPSHOT</repositoryPolicy>
<autoBlockActive>true</autoBlockActive>
<fileTypeValidation>true</fileTypeValidation>
<metadataMaxAge>1440</metadataMaxAge>
</externalConfiguration>
</repository>
<repository>
<id>codehaus-snapshots</id>
<name>Codehaus Snapshots</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://nexus.codehaus.org/snapshots/</url>
</remoteStorage>
<externalConfiguration>
<proxyMode>ALLOW</proxyMode>
<artifactMaxAge>1440</artifactMaxAge>
<itemMaxAge>1440</itemMaxAge>
<cleanseRepositoryMetadata>false</cleanseRepositoryMetadata>
<downloadRemoteIndex>true</downloadRemoteIndex>
<checksumPolicy>WARN</checksumPolicy>
<repositoryPolicy>SNAPSHOT</repositoryPolicy>
<autoBlockActive>true</autoBlockActive>
<fileTypeValidation>true</fileTypeValidation>
<metadataMaxAge>1440</metadataMaxAge>
</externalConfiguration>
</repository>
<repository>
<id>releases</id>
<name>Releases</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>ALLOW_WRITE_ONCE</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<externalConfiguration>
<proxyMode>ALLOW</proxyMode>
<artifactMaxAge>-1</artifactMaxAge>
<itemMaxAge>1440</itemMaxAge>
<cleanseRepositoryMetadata>false</cleanseRepositoryMetadata>
<downloadRemoteIndex>false</downloadRemoteIndex>
<checksumPolicy>WARN</checksumPolicy>
<repositoryPolicy>RELEASE</repositoryPolicy>
</externalConfiguration>
</repository>
<repository>
<id>snapshots</id>
<name>Snapshots</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>ALLOW_WRITE</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<externalConfiguration>
<proxyMode>ALLOW</proxyMode>
<artifactMaxAge>1440</artifactMaxAge>
<itemMaxAge>1440</itemMaxAge>
<cleanseRepositoryMetadata>false</cleanseRepositoryMetadata>
<downloadRemoteIndex>false</downloadRemoteIndex>
<checksumPolicy>WARN</checksumPolicy>
<repositoryPolicy>SNAPSHOT</repositoryPolicy>
</externalConfiguration>
</repository>
<repository>
<id>thirdparty</id>
<name>3rd party</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>ALLOW_WRITE_ONCE</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<externalConfiguration>
<proxyMode>ALLOW</proxyMode>
<artifactMaxAge>-1</artifactMaxAge>
<itemMaxAge>1440</itemMaxAge>
<cleanseRepositoryMetadata>false</cleanseRepositoryMetadata>
<downloadRemoteIndex>false</downloadRemoteIndex>
<checksumPolicy>WARN</checksumPolicy>
<repositoryPolicy>RELEASE</repositoryPolicy>
</externalConfiguration>
</repository>
<repository>
<id>central-m1</id>
<name>Central M1 shadow</name>
<providerRole>org.sonatype.nexus.proxy.repository.ShadowRepository</providerRole>
<providerHint>m2-m1-shadow</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheTTL>15</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<localStorage>
<provider>file</provider>
</localStorage>
<externalConfiguration>
<masterRepositoryId>central</masterRepositoryId>
<syncAtStartup>false</syncAtStartup>
</externalConfiguration>
</repository>
<repository>
<id>public</id>
<name>Public Repositories</name>
<providerRole>org.sonatype.nexus.proxy.repository.GroupRepository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheTTL>15</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<localStorage>
<provider>file</provider>
</localStorage>
<externalConfiguration>
<mergeMetadata>true</mergeMetadata>
<memberRepositories>
<memberRepository>releases</memberRepository>
<memberRepository>thirdparty</memberRepository>
<memberRepository>central</memberRepository>
<memberRepository>alfresco</memberRepository>
<memberRepository>codehaus</memberRepository>
<memberRepository>google</memberRepository>
<memberRepository>java.net-m2</memberRepository>
<memberRepository>jboss.repository</memberRepository>
<memberRepository>sonatyperepository</memberRepository>
<memberRepository>repo.spring.io.release</memberRepository>
<memberRepository>kantega</memberRepository>
<memberRepository>nightlabs</memberRepository>
<memberRepository>nuxeo</memberRepository>
<memberRepository>spy</memberRepository>
<memberRepository>thebuzzmedia</memberRepository>
<memberRepository>muleforge-repo</memberRepository>
<memberRepository>repo.maven.mule</memberRepository>
<memberRepository>yongtai</memberRepository>
<memberRepository>betaconceptframework</memberRepository>
<memberRepository>camunda</memberRepository>
<memberRepository>ibiblio</memberRepository>
<memberRepository>squashtest</memberRepository>
<memberRepository>jboss-thirdparty-releases</memberRepository>
<memberRepository>repo.spring.io.snapshot</memberRepository>
<memberRepository>oss.sourceforge-releases</memberRepository>
<memberRepository>softeu</memberRepository>
<memberRepository>apache-repo</memberRepository>
<memberRepository>oschina.releases</memberRepository>
<memberRepository>cloudhopper</memberRepository>
<memberRepository>kaifazhe</memberRepository>
<memberRepository>maven-db-plugin-repo</memberRepository>
</memberRepositories>
</externalConfiguration>
</repository>
<repository>
<id>google</id>
<name>Google Code</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://google-maven-repository.googlecode.com/svn/repository/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>java.net-m2</id>
<name>java.net - Maven 2</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://download.java.net/maven/2/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>java.net-m1</id>
<name>java.net - Maven 1</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven1</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://download.java.net/maven/1/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>sonatyperepository</id>
<name>Sonatype Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repository.sonatype.org/content/groups/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>alfresco</id>
<name>Alfresco</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>https://maven.alfresco.com/nexus/content/repositories/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>codehaus</id>
<name>Codehaus</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repository.codehaus.org/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>jboss.repository</id>
<name>Jboss Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>https://repository.jboss.org/nexus/content/repositories/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>java.net-m1-m2</id>
<name>java.net-M1 M2 shadow</name>
<providerRole>org.sonatype.nexus.proxy.repository.ShadowRepository</providerRole>
<providerHint>m1-m2-shadow</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheTTL>15</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<externalConfiguration>
<masterRepositoryId>java.net-m1</masterRepositoryId>
<synchronizeAtStartup>false</synchronizeAtStartup>
</externalConfiguration>
</repository>
<repository>
<id>repo.spring.io.release</id>
<name>SpringSource Release Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repo.spring.io/release/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>BLOCKED_AUTO</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>kantega</id>
<name>kantega</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://opensource.kantega.no/nexus/content/groups/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>nightlabs</id>
<name>nightlabs</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://dev.nightlabs.org/maven-repository/repo/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>nuxeo</id>
<name>nuxeo</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>https://maven-us.nuxeo.org/nexus/content/groups/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>spy</id>
<name>Spy Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://files.couchbase.com/maven2/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>thebuzzmedia</id>
<name>The Buzz Media Maven Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://maven.thebuzzmedia.com/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>muleforge-repo</id>
<name>MuleForge Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repository.muleforge.org/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>repo.maven.mule</id>
<name>Mule Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repo1.maven.org/maven/mule/dependencies/maven2/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>yongtai</id>
<name>yongtai</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repo.yongtai.com.cn/nexus/content/repositories/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>betaconceptframework</id>
<name>betaconceptframework</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://nexus.betaconceptframework.org/nexus/content/groups/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>camunda</id>
<name>camunda</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>https://app.camunda.com/nexus/content/groups/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>ibiblio</id>
<name>ibiblio</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://mirrors.ibiblio.org/maven/mule/dependencies/maven2/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>squashtest</id>
<name>squashtest</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repo.squashtest.org/maven2/releases/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>jboss-thirdparty-releases</id>
<name>Jboss Thirdparty Releases Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>repo.spring.io.snapshot</id>
<name>SpringSource Snapshot Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://repo.spring.io/snapshot/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>BLOCKED_AUTO</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>oss.sourceforge-releases</id>
<name>Sourceforge Releases</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>https://oss.sonatype.org/content/repositories/sourceforge-releases/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>softeu</id>
<name>softeu</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://maven.in.softeu.cz/nexus/content/repositories/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
<repository>
<id>oschina.releases</id>
<name>Oschina Releases</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://maven.oschina.net/content/groups/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>apache-repo</id>
<name>Apache Repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>https://repository.apache.org/content/groups/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>cloudhopper</id>
<name>Repository for Cloudhopper</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://maven.cloudhopper.com/repos/third-party/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>kaifazhe</id>
<name>kaifazhe</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>http://maven.kaifazhe.me/content/groups/public/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
</externalConfiguration>
</repository>
<repository>
<id>maven-db-plugin-repo</id>
<name>maven db plugin repository</name>
<providerRole>org.sonatype.nexus.proxy.repository.Repository</providerRole>
<providerHint>maven2</providerHint>
<localStatus>IN_SERVICE</localStatus>
<notFoundCacheActive>true</notFoundCacheActive>
<notFoundCacheTTL>1440</notFoundCacheTTL>
<userManaged>true</userManaged>
<exposed>true</exposed>
<browseable>true</browseable>
<writePolicy>READ_ONLY</writePolicy>
<indexable>true</indexable>
<searchable>true</searchable>
<localStorage>
<provider>file</provider>
</localStorage>
<remoteStorage>
<url>https://maven-db-plugin.googlecode.com/svn/maven/repo/</url>
</remoteStorage>
<externalConfiguration>
<repositoryPolicy>RELEASE</repositoryPolicy>
<checksumPolicy>WARN</checksumPolicy>
<fileTypeValidation>true</fileTypeValidation>
<downloadRemoteIndex>true</downloadRemoteIndex>
<artifactMaxAge>-1</artifactMaxAge>
<metadataMaxAge>1440</metadataMaxAge>
<itemMaxAge>1440</itemMaxAge>
<autoBlockActive>true</autoBlockActive>
<proxyMode>ALLOW</proxyMode>
</externalConfiguration>
</repository>
</repositories>
<repositoryGrouping>
<pathMappings>
<pathMapping>
<id>inhouse-stuff</id>
<groupId>*</groupId>
<routeType>inclusive</routeType>
<routePatterns>
<routePattern>^/(com|org)/somecompany/.*</routePattern>
</routePatterns>
<repositories>
<repository>snapshots</repository>
<repository>releases</repository>
</repositories>
</pathMapping>
<pathMapping>
<id>apache-stuff</id>
<groupId>*</groupId>
<routeType>exclusive</routeType>
<routePatterns>
<routePattern>^/org/some-oss/.*</routePattern>
</routePatterns>
<repositories>
<repository>releases</repository>
<repository>snapshots</repository>
</repositories>
</pathMapping>
</pathMappings>
</repositoryGrouping>
<repositoryTargets>
<repositoryTarget>
<id>1</id>
<name>All (Maven2)</name>
<contentClass>maven2</contentClass>
<patterns>
<pattern>.*</pattern>
</patterns>
</repositoryTarget>
<repositoryTarget>
<id>2</id>
<name>All (Maven1)</name>
<contentClass>maven1</contentClass>
<patterns>
<pattern>.*</pattern>
</patterns>
</repositoryTarget>
<repositoryTarget>
<id>3</id>
<name>All but sources (Maven2)</name>
<contentClass>maven2</contentClass>
<patterns>
<pattern>(?!.*-sources.*).*</pattern>
</patterns>
</repositoryTarget>
<repositoryTarget>
<id>4</id>
<name>All Metadata (Maven2)</name>
<contentClass>maven2</contentClass>
<patterns>
<pattern>.*maven-metadata\.xml.*</pattern>
</patterns>
</repositoryTarget>
<repositoryTarget>
<id>any</id>
<name>All (Any Repository)</name>
<contentClass>any</contentClass>
<patterns>
<pattern>.*</pattern>
</patterns>
</repositoryTarget>
<repositoryTarget>
<id>site</id>
<name>All (site)</name>
<contentClass>site</contentClass>
<patterns>
<pattern>.*</pattern>
</patterns>
</repositoryTarget>
</repositoryTargets>
<tasks>
<task>
<id>126</id>
<name>Health Check: repo.maven.mule</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390827763379</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390827763379</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>repo.maven.mule</value>
</property>
<property>
<key>.name</key>
<value>Health Check: repo.maven.mule</value>
</property>
<property>
<key>.id</key>
<value>126</value>
</property>
</properties>
</task>
<task>
<id>83</id>
<name>Health Check: muleforge-repo</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390835252618</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390835252618</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>muleforge-repo</value>
</property>
<property>
<key>.name</key>
<value>Health Check: muleforge-repo</value>
</property>
<property>
<key>.id</key>
<value>83</value>
</property>
</properties>
</task>
<task>
<id>12</id>
<name>Health Check: alfresco</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390836796612</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390836796612</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>alfresco</value>
</property>
<property>
<key>.name</key>
<value>Health Check: alfresco</value>
</property>
<property>
<key>.id</key>
<value>12</value>
</property>
</properties>
</task>
<task>
<id>115</id>
<name>Health Check: oschina.releases</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390834883946</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390834883946</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>oschina.releases</value>
</property>
<property>
<key>.name</key>
<value>Health Check: oschina.releases</value>
</property>
<property>
<key>.id</key>
<value>115</value>
</property>
</properties>
</task>
<task>
<id>106</id>
<name>Health Check: repo.spring.io.snapshot</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390827592119</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390827592119</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>repo.spring.io.snapshot</value>
</property>
<property>
<key>.name</key>
<value>Health Check: repo.spring.io.snapshot</value>
</property>
<property>
<key>.id</key>
<value>106</value>
</property>
</properties>
</task>
<task>
<id>15</id>
<name>Health Check: google</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390836900752</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390836900752</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>google</value>
</property>
<property>
<key>.name</key>
<value>Health Check: google</value>
</property>
<property>
<key>.id</key>
<value>15</value>
</property>
</properties>
</task>
<task>
<id>73</id>
<name>Health Check: kantega</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390836964716</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390836964716</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>kantega</value>
</property>
<property>
<key>.name</key>
<value>Health Check: kantega</value>
</property>
<property>
<key>.id</key>
<value>73</value>
</property>
</properties>
</task>
<task>
<id>134</id>
<name>Health Check: maven-db-plugin-repo</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390836977151</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390836977151</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>maven-db-plugin-repo</value>
</property>
<property>
<key>.name</key>
<value>HealthCheckTask</value>
</property>
</properties>
</task>
<task>
<id>87</id>
<name>Health Check: yongtai</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390836038673</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390836038673</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>yongtai</value>
</property>
<property>
<key>.name</key>
<value>Health Check: yongtai</value>
</property>
<property>
<key>.id</key>
<value>87</value>
</property>
</properties>
</task>
<task>
<id>102</id>
<name>Health Check: jboss-thirdparty-releases</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390827369711</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390827369711</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>jboss-thirdparty-releases</value>
</property>
<property>
<key>.name</key>
<value>Health Check: jboss-thirdparty-releases</value>
</property>
<property>
<key>.id</key>
<value>102</value>
</property>
</properties>
</task>
<task>
<id>90</id>
<name>Health Check: betaconceptframework</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390836235193</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390836235193</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>betaconceptframework</value>
</property>
<property>
<key>.name</key>
<value>Health Check: betaconceptframework</value>
</property>
<property>
<key>.id</key>
<value>90</value>
</property>
</properties>
</task>
<task>
<id>124</id>
<name>Health Check: cloudhopper</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837116064</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837116064</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>cloudhopper</value>
</property>
<property>
<key>.name</key>
<value>Health Check: cloudhopper</value>
</property>
<property>
<key>.id</key>
<value>124</value>
</property>
</properties>
</task>
<task>
<id>125</id>
<name>Health Check: repo.spring.io.release</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390827568079</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390827568079</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>repo.spring.io.release</value>
</property>
<property>
<key>.name</key>
<value>Health Check: repo.spring.io.release</value>
</property>
<property>
<key>.id</key>
<value>125</value>
</property>
</properties>
</task>
<task>
<id>16</id>
<name>Health Check: java.net-m1</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837227774</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837227774</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>java.net-m1</value>
</property>
<property>
<key>.name</key>
<value>Health Check: java.net-m1</value>
</property>
<property>
<key>.id</key>
<value>16</value>
</property>
</properties>
</task>
<task>
<id>19</id>
<name>Health Check: sonatyperepository</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837351046</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837351046</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>sonatyperepository</value>
</property>
<property>
<key>.name</key>
<value>Health Check: sonatyperepository</value>
</property>
<property>
<key>.id</key>
<value>19</value>
</property>
</properties>
</task>
<task>
<id>18</id>
<name>Health Check: jboss.repository</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837365364</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837365364</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>jboss.repository</value>
</property>
<property>
<key>.name</key>
<value>Health Check: jboss.repository</value>
</property>
<property>
<key>.id</key>
<value>18</value>
</property>
</properties>
</task>
<task>
<id>123</id>
<name>Health Check: apache-repo</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837421683</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837421683</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>apache-repo</value>
</property>
<property>
<key>.name</key>
<value>Health Check: apache-repo</value>
</property>
<property>
<key>.id</key>
<value>123</value>
</property>
</properties>
</task>
<task>
<id>108</id>
<name>Health Check: oss.sourceforge-releases</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390833217928</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390833217928</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>oss.sourceforge-releases</value>
</property>
<property>
<key>.name</key>
<value>Health Check: oss.sourceforge-releases</value>
</property>
<property>
<key>.id</key>
<value>108</value>
</property>
</properties>
</task>
<task>
<id>92</id>
<name>Health Check: camunda</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837506345</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837506345</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>camunda</value>
</property>
<property>
<key>.name</key>
<value>Health Check: camunda</value>
</property>
<property>
<key>.id</key>
<value>92</value>
</property>
</properties>
</task>
<task>
<id>14</id>
<name>Health Check: codehaus</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837566200</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837566200</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>codehaus</value>
</property>
<property>
<key>.name</key>
<value>Health Check: codehaus</value>
</property>
<property>
<key>.id</key>
<value>14</value>
</property>
</properties>
</task>
<task>
<id>132</id>
<name>Health Check: kaifazhe</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390830501007</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390830501007</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>kaifazhe</value>
</property>
<property>
<key>.name</key>
<value>Health Check: kaifazhe</value>
</property>
<property>
<key>.id</key>
<value>132</value>
</property>
</properties>
</task>
<task>
<id>21</id>
<name>Health Check: java.net-m2</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837004335</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837004335</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>java.net-m2</value>
</property>
<property>
<key>.name</key>
<value>Health Check: java.net-m2</value>
</property>
<property>
<key>.id</key>
<value>21</value>
</property>
</properties>
</task>
<task>
<id>77</id>
<name>Health Check: nightlabs</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837819924</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837819924</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>nightlabs</value>
</property>
<property>
<key>.name</key>
<value>Health Check: nightlabs</value>
</property>
<property>
<key>.id</key>
<value>77</value>
</property>
</properties>
</task>
<task>
<id>96</id>
<name>Health Check: ibiblio</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390837860158</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390837860158</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>ibiblio</value>
</property>
<property>
<key>.name</key>
<value>Health Check: ibiblio</value>
</property>
<property>
<key>.id</key>
<value>96</value>
</property>
</properties>
</task>
<task>
<id>76</id>
<name>Health Check: nuxeo</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390838055641</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390838055641</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>nuxeo</value>
</property>
<property>
<key>.name</key>
<value>Health Check: nuxeo</value>
</property>
<property>
<key>.id</key>
<value>76</value>
</property>
</properties>
</task>
<task>
<id>98</id>
<name>Health Check: squashtest</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390840093194</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390840093194</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>squashtest</value>
</property>
<property>
<key>.name</key>
<value>Health Check: squashtest</value>
</property>
<property>
<key>.id</key>
<value>98</value>
</property>
</properties>
</task>
<task>
<id>110</id>
<name>Health Check: softeu</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390833723313</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390833723313</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>softeu</value>
</property>
<property>
<key>.name</key>
<value>Health Check: softeu</value>
</property>
<property>
<key>.id</key>
<value>110</value>
</property>
</properties>
</task>
<task>
<id>81</id>
<name>Health Check: thebuzzmedia</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390840400815</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390840400815</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>thebuzzmedia</value>
</property>
<property>
<key>.name</key>
<value>Health Check: thebuzzmedia</value>
</property>
<property>
<key>.id</key>
<value>81</value>
</property>
</properties>
</task>
<task>
<id>79</id>
<name>Health Check: spy</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390836987291</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390836987291</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>spy</value>
</property>
<property>
<key>.name</key>
<value>Health Check: spy</value>
</property>
<property>
<key>.id</key>
<value>79</value>
</property>
</properties>
</task>
<task>
<id>13</id>
<name>Health Check: central</name>
<enabled>true</enabled>
<type>HealthCheckTask</type>
<status>WAITING</status>
<nextRun>1390841502664</nextRun>
<schedule>
<type>hourly</type>
<startDate>1390841502664</startDate>
</schedule>
<properties>
<property>
<key>repoId</key>
<value>central</value>
</property>
<property>
<key>.name</key>
<value>Health Check: central</value>
</property>
<property>
<key>.id</key>
<value>13</value>
</property>
</properties>
</task>
</tasks>
<smtpConfiguration>
<hostname>smtp-host</hostname>
<port>25</port>
<username>smtp-username</username>
<password>{AI7C9STZ96QHpf5CuoPuG4U5Kd8RaQH3BZvoyCtNoUo=}</password>
<systemEmailAddress>system@nexus.org</systemEmailAddress>
</smtpConfiguration>
<errorReporting>
<jiraUrl>https://issues.sonatype.org</jiraUrl>
<jiraProject>PR</jiraProject>
</errorReporting>
<notification />
</nexusConfiguration>
1
https://gitee.com/xiongweizhou/maven-framework-project.git
git@gitee.com:xiongweizhou/maven-framework-project.git
xiongweizhou
maven-framework-project
maven-framework-project
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891