File tree Expand file tree Collapse file tree 9 files changed +56
-27
lines changed
Expand file tree Collapse file tree 9 files changed +56
-27
lines changed Original file line number Diff line number Diff line change 671671 <build >
672672 <plugins >
673673 <plugin >
674- <groupId >ru.concerteza.buildnumber </groupId >
675- <artifactId >maven-jgit- buildnumber-plugin</artifactId >
676- <version >1 .2.6 </version >
674+ <groupId >org.codehaus.mojo </groupId >
675+ <artifactId >buildnumber-maven -plugin</artifactId >
676+ <version >3 .2.0 </version >
677677 <executions >
678678 <execution >
679679 <id >git-buildnumber</id >
680680 <goals >
681- <goal >extract-buildnumber </goal >
681+ <goal >create </goal >
682682 </goals >
683683 <phase >prepare-package</phase >
684+ <configuration >
685+ <doCheck >false</doCheck >
686+ <doUpdate >false</doUpdate >
687+ <getRevisionOnlyOnce >true</getRevisionOnlyOnce >
688+ <revisionOnScmFailure >unknown</revisionOnScmFailure >
689+ </configuration >
684690 </execution >
685691 </executions >
686692 </plugin >
693699 <mainClass >org.apache.cloudstack.ServerDaemon</mainClass >
694700 </manifest >
695701 <manifestEntries >
696- <X-Git-Branch >${git.branch } </X-Git-Branch >
697- <X-Git-Tag >${git.tag } </X-Git-Tag >
698- <X-Git-Revision >${git.revision } </X-Git-Revision >
699- <Implementation-Revision >${git.revision } </Implementation-Revision >
700- <Implementation-Branch >${git.branch } </Implementation-Branch >
702+ <X-Git-Branch >${scmBranch } </X-Git-Branch >
703+ <X-Git-Tag >${project.version } </X-Git-Tag >
704+ <X-Git-Revision >${buildNumber } </X-Git-Revision >
705+ <Implementation-Revision >${buildNumber } </Implementation-Revision >
706+ <Implementation-Branch >${scmBranch } </Implementation-Branch >
701707 </manifestEntries >
702708 </archive >
703709 </configuration >
Original file line number Diff line number Diff line change 5757 <scope >compile</scope >
5858 </dependency >
5959 <dependency >
60- <groupId >mysql</groupId >
61- <artifactId >mysql-connector-java </artifactId >
60+ <groupId >com. mysql</groupId >
61+ <artifactId >mysql-connector-j </artifactId >
6262 <scope >test</scope >
6363 </dependency >
6464 </dependencies >
Original file line number Diff line number Diff line change 5353 <artifactId >commons-pool2</artifactId >
5454 </dependency >
5555 <dependency >
56- <groupId >mysql</groupId >
57- <artifactId >mysql-connector-java </artifactId >
56+ <groupId >com. mysql</groupId >
57+ <artifactId >mysql-connector-j </artifactId >
5858 </dependency >
5959 <dependency >
6060 <groupId >org.apache.cloudstack</groupId >
Original file line number Diff line number Diff line change 3333 <artifactId >globodns-client</artifactId >
3434 </dependency >
3535 <dependency >
36- <groupId >mysql</groupId >
37- <artifactId >mysql-connector-java </artifactId >
36+ <groupId >com. mysql</groupId >
37+ <artifactId >mysql-connector-j </artifactId >
3838 <scope >test</scope >
3939 </dependency >
4040 </dependencies >
Original file line number Diff line number Diff line change 4141 <artifactId >reload4j</artifactId >
4242 </dependency >
4343 <dependency >
44- <groupId >mysql</groupId >
45- <artifactId >mysql-connector-java </artifactId >
44+ <groupId >com. mysql</groupId >
45+ <artifactId >mysql-connector-j </artifactId >
4646 <scope >test</scope >
4747 </dependency >
4848 </dependencies >
Original file line number Diff line number Diff line change 470470 <version >${cs.reload4j.version} </version >
471471 </dependency >
472472 <dependency >
473- <groupId >mysql</groupId >
474- <artifactId >mysql-connector-java </artifactId >
473+ <groupId >com. mysql</groupId >
474+ <artifactId >mysql-connector-j </artifactId >
475475 <version >${cs.mysql.version} </version >
476476 <scope >test</scope >
477477 </dependency >
486486 </exclusion >
487487 </exclusions >
488488 </dependency >
489- <dependency >
490- <groupId >com.mysql</groupId >
491- <artifactId >mysql-connector-j</artifactId >
492- <version >${cs.mysql.version} </version >
493- <scope >test</scope >
494- </dependency >
495489 <dependency >
496490 <groupId >net.sf.ehcache</groupId >
497491 <artifactId >ehcache-core</artifactId >
Original file line number Diff line number Diff line change 1+ <!--
2+ Licensed to the Apache Software Foundation (ASF) under one
3+ or more contributor license agreements. See the NOTICE file
4+ distributed with this work for additional information
5+ regarding copyright ownership. The ASF licenses this file
6+ to you under the Apache License, Version 2.0 (the
7+ "License"); you may not use this file except in compliance
8+ with the License. You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing,
13+ software distributed under the License is distributed on an
14+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+ KIND, either express or implied. See the License for the
16+ specific language governing permissions and limitations
17+ under the License.
18+ -->
19+ # Marvin
20+
21+ Marvin is the Apache CloudStack Python client written for running smoke tests.
22+
23+ ## Overview
24+
25+ Marvin provides a Python-based client for Apache CloudStack. It offers utilities for testing and interacting with CloudStack deployments.
26+
27+ ## License
28+
29+ Licensed under the Apache License, Version 2.0. See the LICENSE.txt file for details.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def replaceVersion(fname, version):
3333 """replace VERSION in setup.py"""
3434 with open (fname , 'r' ) as f :
3535 content = f .read ()
36- needle = '\n VERSION\s*=\s*[\' "][^\' "]*[\' "]'
36+ needle = r '\nVERSION\s*=\s*[\'"][^\'"]*[\'"]'
3737 # Ensure the version is PEP440 compliant
3838 version = version .replace ('-' , '+' , 1 )
3939 replacement = '\n VERSION = "%s"' % version
Original file line number Diff line number Diff line change 3838 maintainer_email = "dev@cloudstack.apache.org" ,
3939 long_description = "Marvin is the Apache CloudStack python "
4040 "client written around the unittest framework" ,
41- platforms = ( "Any" ,) ,
41+ platforms = [ "Any" ] ,
4242 url = "https://builds.apache.org/job/cloudstack-marvin/" ,
4343 packages = ["marvin" , "marvin.cloudstackAPI" ,
4444 "marvin.lib" , "marvin.config" , "marvin.sandbox" ,
You can’t perform that action at this time.
0 commit comments