repository

JBoss as client 5.1.0.GA repository missing

荒凉一梦 提交于 2019-12-05 15:05:12
Just recently I was creating new maven project on new computer and it seams that the dependency for jboss as client isn't available anymore: <dependency> <groupId>org.jboss.jbossas</groupId> <artifactId>jboss-as-client</artifactId> <version>5.1.0.GA</version> <type>pom</type> <scope>provided</scope> </dependency> And the repository resource is: <repositories> <repository> <id>jboss-maven2</id> <url>http://repository.jboss.com/maven2</url> </repository> </repositories> Is there any new repository url, because I can not download any dependency since this site is broken? Check this post. JBoss

jdbc4.MySQLSyntaxErrorException: Table doesn't exist in database

↘锁芯ラ 提交于 2019-12-05 14:43:12
I'm developing a web app using SpringBoot, and this is my application.properties file to specify the credentials to access to the database: spring.datasource.driverClassName=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://127.0.0.1:3306/Salamander spring.datasource.username=root spring.datasource.password=root spring.jpa.hibernate.ddl-auto=create-drop spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect but when I try to run the SpringBoot app, it gives me this error: Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'salamander

Create a new repo from sub folder in Mercurial Repo using convert

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-05 14:39:36
问题 I am trying to extract a folder (call it Project1 ) from an existing Mercurial Repo (call in MainRepo ) using the Convert extension for Mercurial to Mercurial conversion. I have followed the methods described by Mercurial developers (and elsewhere on the web) under Windows XP: C:\MainRepo>echo include Project1 > ~myfilemap C:\MainRepo>echo rename Project1 . >> ~myfilemap C:\MainRepo>hg convert --filemap ~myfilemap . C:\Project1Repo C:\MainRepo>cd \Project1Repo C:\Project1Repo>hg update This

Mercurial merge repository as branch

假如想象 提交于 2019-12-05 13:54:46
I have two Mercurial repositories that are for different major revisions of the same project. The latter version is a massive change to the functionality, and especially the UI, of the project, but it will still have a lot of common code with the earlier version. (For shorthand I'll call these versions 4.6 and 5.0 and the repositories project-4.x and project-5.x going forward; that's basically what I'm dealing with.)[1] As we thought more carefully about the structure of our repository, and thinking especially about how to handle the related code, it became apparent that we wanted to simply

is there any link to show all public repositories in GitHub?

ぐ巨炮叔叔 提交于 2019-12-05 13:35:17
Yesterday, I was trying to get a list of all public repositories in GitHub, but I didn't find any link. And for example in Sourceforge you can list all proyects by categories or in Google code you can search all for all proyects. Yes, I tried to search with keywords like as "*" or "%" or empty string, but you only see this page https://github.com/search?q=&type=Everything&repo=&langOverride=&start_value=1 You can list all repositories in github using the following request: https://api.github.com/repositories?since=0 it will return the first "n" repositories of id>0 as a JSON Array. You should

Using SVN alone or in small workgroups - workflow approach?

戏子无情 提交于 2019-12-05 12:53:00
I have spent some months working on a web application and we're come close to production stage. It's soon time to expand the development group with 1-3 people on this project. I have not too much experience on working with SVN, but It's obviously the choice for a big part of the larger companies out there, so I am guessing that the pros of SVN without a doubt outweights the time spent on commit/check ins / check outs etc. The workflow seems to become a bit more complicated with SVN, and even though I have read Version Control with Subversion by O'Reilly Media and I am not sure yet if it's

How to create a Netbeans 7 project from an existing git repo?

依然范特西╮ 提交于 2019-12-05 12:10:14
问题 I'd imagine there is a 'new project from repo' option somewhere but I can't find it. Is there more to it than this, or am I missing something? 回答1: Just clone the repo into your (newly created) netbeans project and then refresh (build) it. 回答2: Use the Team menu, select "Git" > "Clone..." Once the repo has been cloned into a local folder, NetBeans will give you the option to open the project. Trying to create a project and then clone into it fails because the target folder is not completely

Repo browser in svn “Repository moved permanently to… please relocate”

断了今生、忘了曾经 提交于 2019-12-05 11:54:24
问题 In the repo browser when I enter the svn root (http://servername/svn) directory I get this message "Repository moved permanently to 'http//....' please relocate There are several projects in this repository and I can access/checkout/update each project but I can't even access the root. How can I fix this? 回答1: I'm assuming that you're not the server admin and that you're relatively new to svn... You'll need to tell your working copies that the remote repo has moved (see the svn book for info

Is an SSH Key Required to clone a public github account?

孤街浪徒 提交于 2019-12-05 05:26:54
Does github require all cloning, of both public and private repositories, to use an SSH public key? Maybe a better question, is can git clone a github repo without a ssh key at all. VonC You can use https protocol, as mentioned in " GitHub - Https access ". You would then use your GitHub login/password in a ~/.netrc file (which can be a security concern ). Note: on Windows, that would be an _netrc file . Since GitHub supports smart http protocol (as detailed here ), you can use that for cloning/pulling and for pushing. SSH Key is used for more safety communication. Is not necessary, although

Svn log - svn: '.' is not a working copy

╄→гoц情女王★ 提交于 2019-12-05 05:16:06
I'm getting "svn: '.' is not a working copy" when i use the svn log command. I know that i need a working copy for the log command to work but can this be done directly on a repository? My goal is to display the information (change history) of a repository. I think updating the working copy whenever i need the log information is not a good solution. Is there an alternative solution to this or updating a working copy every time i need to log is the only way to go? Thanks in advance. Try svn log [repository_url] That will get the log of a particular repository rather than the local, checked-out