MySQL Workbench Crashes after Catalog Diff Report on reverse engineered models
Group items matching
in title, tags, annotations or url
15More
cygwin permissions bug on Windows 8 » Vineet Gupta - 0 views
-
Permissions 0660 for '/home/Vineet/.ssh/id_rsa' are too open. It is required that your private key files are NOT accessible by others. This private key will be ignored. bad permissions: ignore key: /home/Vineet/.ssh/id_rsa Permission denied (publickey).
- ...12 more annotations...
MySQL Workbench Bugs - 0 views
MySQL Bugs: Search - 0 views
25More
Anemic domain model - Wikipedia, the free encyclopedia - 0 views
-
objects containing only data
-
objects containing only code
- ...14 more annotations...
-
Benefit
-
Liabilities
-
Logic cannot be implemented in a truly object-oriented way
-
validation and mutation logic is placed somewhere outside
-
Necessitates a service layer when sharing domain logic across differing consumers of an object model.
24More
Data Source Configuration in AS 7 | JBoss AS 7 | JBoss Community - 0 views
-
This annotation requires that a data source implementation class (generally from a JDBC driver JAR) be present on the class path (either by including it in your application, or deploying it as a top-level JAR and referring to it via MANIFEST.MF's Class-Path attribute) and be named explicitly.
- ...21 more annotations...
-
this annotation bypasses the management layer and as such it is recommended only for development and testing purposes
-
managed by the application server (and thus take advantage of the management and connection pooling facilities it provides), you must perform two tasks. First, you must make the JDBC driver available to the application server; then you can configure the data source itself. Once you have performed these tasks you can use the data source via standard JNDI injection.
-
recommended way to install a JDBC driver into the application server is to simply deploy it as a regular JAR deployment. The reason for this is that when you run your application server in domain mode, deployments are automatically propagated to all servers to which the deployment applies; thus distribution of the driver JAR is one less thing for administrators to worry about.
-
Note on MySQL driver and JDBC Type 4 compliance: while the MySQL driver (at least up to 5.1.18) is designed to be a Type 4 driver, its jdbcCompliant() method always return false. The reason is that the driver does not pass SQL 92 full compliance tests, says MySQL. Thus, you will need to install the MySQL JDBC driver as a module (see below).
-
<module xmlns="urn:jboss:module:1.0" name="com.mysql"> <resources> <resource-root path="mysql-connector-java-5.1.15.jar"/> </resources> <dependencies> <module name="javax.api"/> </dependencies></module>
-
define your module with a module.xml file, and the actual jar file that contains your database driver
-
define any dependencies you might have. In this case, as the case with all JDBC data sources, we would be dependent on the Java JDBC API's, which in this case in defined in another module called javax.api, which you can find under modules/javax/api/main as you would expect.
-
<datasource jndi-name="java:jboss/datasources/MySqlDS" pool-name="MySqlDS"> <connection-url>jdbc:mysql://localhost:3306/EJB3</connection-url> <driver>com.mysql</driver>
-
<drivers> <driver name="com.mysql" module="com.mysql"> <xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class> </driver> </drivers>
-
jboss-7.0.0.<release>/domain/configuration/domain.xml or jboss-7.0.0.<release>/standalone/configuration/standalone.xml
80More
Plugins - Jenkins - Jenkins Wiki - 0 views
-
Subversion Release Manager — This plugin allows you to set up a job in Hudson for building specific revisions of a project.
- ...77 more annotations...
-
Subversion Tagging Plugin — This plugin automatically performs subversion tagging (technically speaking svn copy) on successful build.
-
Build Pipeline Plugin — This plugin creates a pipeline of Hudson\Jenkins jobs and gives a view so that you can visualise it.
-
JBoss Management Plugin — This plugin allows to manage a JBoss Application Server during build procedure
-
Post build task — This plugin allows the user to execute a shell/batch task depending on the build log output. Java regular expression are allowed.
-
Promoted Builds Plugin — This plugin allows you to distinguish good builds from bad builds by introducing the notion of 'promotion'.
-
Selenium AES Plugin — This plugin is for continuous regression test by Selenium Auto Exec Server (AES).
-
Vagrant Plugin — This plugin allows booting of Vagrant virtual machines, provisioning them and also executing scripts inside of them
-
Unicorn Validation Plugin — This plugin uses W3C's Unified Validator, which helps improve the quality of Web pages by performing a variety of checks.
-
Android Emulator Plugin — Lets you automatically generate, launch and interact with an Android emulator during a build, with the emulator logs being captured as artifacts.
-
Artifactory Plugin — This plugin allows deploying Maven 2, Maven 3, Ivy and Gradle artifacts and build info to the Artifactory artifacts manager.
-
AWS Cloudformation Plugin — A plugin that allows for the creation of cloud formation stacks before running the build and the deletion of them after the build is completed.
-
Build Keeper Plugin — Select a policy for automatically marking builds as "keep forever" to enable long term analysis trending when discarding old builds - or use to protect logs and artifacts from certain builds
-
Build Name Setter Plugin — This plugin sets the display name of a build to something other than #1, #2, #3, ...
-
SeleniumRC Plugin — This plugin allows you to create Selenium server instance for each project build.
-
Vagrant Plugin — This plugin allows booting of Vagrant virtual machines, provisioning them and also executing scripts inside of them
-
VirtualBox Plugin — This plugin integrates Jenkins with VirtualBox (version 3, 4.0 and 4.1) virtual machine.
-
Version Number Plugin — This plugin creates a new version number and stores it in the environment variable whose name you specify in the configuration.
-
VMware plugin — This plugin allows you to start a VMware Virtual Machine before a build and stop it again after the build completes.
-
AWS Cloudformation Plugin — A plugin that allows for the creation of cloud formation stacks before running the build and the deletion of them after the build is completed.
-
Desktop Notifier for Jenkins — This is useful for those who are looking for a Desktop Notifier for Jenkins builds to automatically notify you about failed builds directly from their desktops.
-
Email-ext plugin — This plugin allows you to configure every aspect of email notifications. You can customize when an email is sent, who should receive it, and what the email says.
-
Jabber Plugin — Integrates Jenkins with the Jabber/XMPP instant messaging protocol. Note that you also need to install the instant-messaging plugin.
-
Checkstyle Plugin — This plugin generates the trend report for Checkstyle, an open source static code analysis program.
-
Clover PHP Plugin — This plugin allows you to capture code coverage reports from PHPUnit. For more information on how to set up PHP projects with Jenkins have a look at the Template for Jenkins Jobs for PHP Projects.
-
Crap4J Plugin — This plugin reads the "crappy methods" report from Crap4J. Hudson will generate the trend report of crap percentage and provide detailed information about changes.
-
Dependency Analyzer Plugin — This plugin parses dependency:analyze goal from maven build logs and generates a dependency report
-
Dependency Graph View Plugin — Shows a dependency graph of the projects using graphviz. Requires a graphviz installation on the server.
-
FindBugs Plugin — This plugin generates the trend report for FindBugs, an open source program which uses static analysis to look for Bugs in Java code.
-
Grinder Plugin — This plugin reads output result files from Grinder performance tests, and will generate reports showing test results for every build and trend reports showing performance results across builds.
-
Performance Plugin — This plugin allows you to capture reports from JMeter and JUnit . Hudson will generate graphic charts with the trend report of performance and robustness.
-
PerfPublisher Plugin — This plugin generates global and trend reports for tests results analysis. Based on an open XML tests results format, the plugin parses the generated files and publish statistics, reports and analysis on the current health of the project.
-
PMD Plugin — This plugin generates the trend report for PMD, an open source static code analysis program.
-
Sonar plugin — Quickly benefit from Sonar, an open-source dashboard based on many analysis tools like Checkstyle, PMD and Cobertura.
-
Violations — This plug-in generates reports static code violation detectors such as checkstyle, pmd, cpd, findbugs, codenarc, fxcop, stylecop and simian.
-
xUnit Plugin — This plugin makes it possible to publish the test results of an execution of a testing tool in Jenkins.
-
Artifactory Plugin — This plugin allows deploying Maven 2, Maven 3, Ivy and Gradle artifacts and build info to the Artifactory artifacts manager.
-
Confluence Publisher Plugin — This plugin allows you to publish build artifacts as attachments to an Atlassian Confluence wiki page.
-
Deploy Plugin — This plugin takes a war/ear file and deploys that to a running remote application server at the end of a build
-
FTP-Publisher Plugin — This plugin can be used to upload project artifacts and whole directories to an ftp server.
-
Hudson Mobi, the iPhone, iPod and Android client for Hudson CI — The iPhone, iPod and iPad client for Hudson CI monitoring on the road.
-
Jira Issue Updater Plugin — This is a Jenkins plugin which updates issues in Atlassian Jira (by changing their status and adding a comment) as part of a Jenkins job.
-
ChuckNorris Plugin — Displays a picture of Chuck Norris (instead of Jenkins the butler) and a random Chuck Norris 'The Programmer' fact on each build page.
-
Active Directory plugin — With this plugin, you can configure Jenkins to authenticate the username and the password through Active Directory.
-
Audit Trail Plugin — Keep a log of who performed particular Jenkins operations, such as configuring jobs.
-
JClouds Plugin — This plugin uses JClouds to provide slave launching on most of the currently usable Cloud infrastructures.
-
Checkstyle Plugin — This plugin generates the trend report for Checkstyle, an open source static code analysis program.
-
FindBugs Plugin — This plugin generates the trend report for FindBugs, an open source program which uses static analysis to look for Bugs in Java code.
-
M2 Release Plugin — This plugin allows you to perform a release build using the maven-release-plugin from within Jenkins.
-
PMD Plugin — This plugin generates the trend report for PMD, an open source static code analysis program.
-
Meme Generator Plugin — Generate Meme images when a build fails (and returns to stable), and post them on the project page.
[CDI Specification Bugs/Clarifications proposed for CDI 1.1] Issue Navigator - JBoss Is... - 0 views
51More
shared by kuni katsuya on 15 Mar 13
- No Cached
Preemptive commit comments | Arialdo Martini - 0 views
arialdomartini.wordpress.com/...pre-emptive-commit-comments
BDD BehaviorDrivenDevelopment CommitComment BestPractices SoftwareEngineering

-
Tell me what the software does
- ...43 more annotations...
-
No more “Just a fix“, “Improvements” or “I made this, this, this and also this” comments.
-
A preemptive comment sets a micro goal
-
Without preemptive comments, I often went on coding, always asking myself: “Should I commit now? Have I reached a stable state which I could consider a good commit?“
-
A preemptive comment creates a little timebox
-
Writing comments preemptively puts the agreement between the pair members to a test
-
feature branch becomes a collection of evolutionary commits each of which has usually a 1:1 binding with tests
-
very easy to find which commit introduced a bug, since each commit is related to a single new goal/feature
-
I started taking a lot of care of the words I was using in comments, commits, test names and classes/variables/methods’ names
8More
Services, practices & tools that should exist in any software development house, part 1... - 1 views
4More
Not able to set global mime-mapping | JBoss AS 7 | JBoss Community - 1 views
-
mime-mapping is complex field and not resource. that is why it has its own operation handlers add-mime/remove-mime to handle its value. what are you trying to achive can be done by command:
- ...1 more annotation...
-
Just bit of a warning when using this, there was a bug in 7.1.1 when you added mime type that prevented server to start.so please use 7.1.2 or 7.2 nightly builds where this is fixed.